]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
typo: Small spelling mistake in example 2923/head
authorAdrian Castro <562969+IAL32@users.noreply.github.com>
Sat, 11 Dec 2021 11:02:23 +0000 (12:02 +0100)
committerGitHub <noreply@github.com>
Sat, 11 Dec 2021 11:02:23 +0000 (12:02 +0100)
Just a couple of characters:
`main` -> `may`

examples/streaming_compression.c

index 87cb887dea4a76ef918db5f46fcab0d44c4ef387..ff1875829ea58530840798328b332387a93143c0 100644 (file)
@@ -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;
 }