aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Castro <562969+IAL32@users.noreply.github.com>2021-12-11 12:02:23 +0100
committerGitHub <noreply@github.com>2021-12-11 12:02:23 +0100
commite0f9dc0dde79b62b5ab4fa35e48cd8ff7adcbb3a (patch)
tree76f408589902c112d9a2a5dd7a75f4d7360a9296
parent252ef866fb0f018ea0ff596c49027201442d7b00 (diff)
downloadzstd-e0f9dc0dde79b62b5ab4fa35e48cd8ff7adcbb3a.tar.gz
typo: Small spelling mistake in example
Just a couple of characters: `main` -> `may`
-rw-r--r--examples/streaming_compression.c2
1 files changed, 1 insertions, 1 deletions
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;
}