Skip to content

Commit

Permalink
Comments: spelling fixes in function names
Browse files Browse the repository at this point in the history
  • Loading branch information
gperciva committed Apr 30, 2024
1 parent b9d3ac1 commit 90e4ba2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ kivaloo-1.1.0
* added proto_lbs_request_append_blks function which takes an array of page
buffer pointers.
* btree_sync collects pointers to page buffers instead of having pages
serialized into one giant buffer, and uses proto_lbs_reqeust_append_blks.
serialized into one giant buffer, and uses proto_lbs_request_append_blks.
* (struct node).mlen renamed to mlen_t.
* (struct node).mlen_n added equal to the length of the prefix shared by all
the keys present in a leaf node.
Expand Down
2 changes: 1 addition & 1 deletion lib/wire/wire.h
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ uint8_t * wire_requestqueue_add_getbuf(struct wire_requestqueue *, size_t,
/**
* wire_requestqueue_add_done(Q, wbuf, len):
* Finish writing a request to the request queue ${Q}. The value ${wbuf} must
* be the pointer returned by wire_requesqueue_add_getbuf(), and the value ${len}
* be the pointer returned by wire_requestqueue_add_getbuf(), and the value ${len}
* must be the value which was passed to wire_requestqueue_add_getbuf().
*/
int wire_requestqueue_add_done(struct wire_requestqueue *, uint8_t *, size_t);
Expand Down
2 changes: 1 addition & 1 deletion lib/wire/wire_requestqueue.c
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ wire_requestqueue_add_getbuf(struct wire_requestqueue * Q, size_t len,
/**
* wire_requestqueue_add_done(Q, wbuf, len):
* Finish writing a request to the request queue ${Q}. The value ${wbuf} must
* be the pointer returned by wire_requesqueue_add_getbuf(), and the value ${len}
* be the pointer returned by wire_requestqueue_add_getbuf(), and the value ${len}
* must be the value which was passed to wire_requestqueue_add_getbuf().
*/
int
Expand Down

0 comments on commit 90e4ba2

Please sign in to comment.