Skip to content

Commit

Permalink
docs: fix simple typo, exhaused -> exhausted
Browse files Browse the repository at this point in the history
There is a small typo in src/libpiano/response.c.

Should read `exhausted` rather than `exhaused`.
  • Loading branch information
timgates42 authored and thedmd committed Aug 14, 2021
1 parent 036492b commit 9f628a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libpiano/response.c
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ static void PianoStrpcat (char * restrict dest, const char * restrict src,
--len;
}

/* append until source exhaused or destination full */
/* append until source exhausted or destination full */
while (*src != '\0' && len > 1) {
*dest = *src;
++dest;
Expand Down

0 comments on commit 9f628a9

Please sign in to comment.