From e0f9dc0dde79b62b5ab4fa35e48cd8ff7adcbb3a Mon Sep 17 00:00:00 2001 From: Adrian Castro <562969+IAL32@users.noreply.github.com> Date: Sat, 11 Dec 2021 12:02:23 +0100 Subject: [PATCH] typo: Small spelling mistake in example Just a couple of characters: `main` -> `may` --- examples/streaming_compression.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/streaming_compression.c b/examples/streaming_compression.c index 87cb887d..ff187582 100644 --- a/examples/streaming_compression.c +++ b/examples/streaming_compression.c @@ -135,6 +135,6 @@ int main(int argc, const char** argv) compressFile_orDie(inFilename, outFilename, cLevel, nbThreads); free(outFilename); /* not strictly required, since program execution stops there, - * but some static analyzer main complain otherwise */ + * but some static analyzer may complain otherwise */ return 0; }