From: Adrian Castro <562969+IAL32@users.noreply.github.com> Date: Sat, 11 Dec 2021 11:02:23 +0000 (+0100) Subject: typo: Small spelling mistake in example X-Git-Tag: v1.5.1~1^2~18^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e0f9dc0dde79b62b5ab4fa35e48cd8ff7adcbb3a;p=thirdparty%2Fzstd.git typo: Small spelling mistake in example Just a couple of characters: `main` -> `may` --- diff --git a/examples/streaming_compression.c b/examples/streaming_compression.c index 87cb887de..ff1875829 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; }