From 30f685447767daa9ccaff03cbf43fbee106058ac Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Sat, 28 Nov 2020 09:26:07 +1100 Subject: docs: fix simple typo, exhaused -> exhausted There is a small typo in src/libpiano/response.c. Should read `exhausted` rather than `exhaused`. --- src/libpiano/response.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libpiano/response.c b/src/libpiano/response.c index 1a0f2d5..1e79261 100644 --- a/src/libpiano/response.c +++ b/src/libpiano/response.c @@ -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; -- cgit v1.2.3