aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Handte <w@felixhandte.com>2021-12-13 13:15:21 -0500
committerGitHub <noreply@github.com>2021-12-13 13:15:21 -0500
commit65404fe14ad292bcad07d6e1c6d6e96cdb799eb1 (patch)
tree76f408589902c112d9a2a5dd7a75f4d7360a9296
parent252ef866fb0f018ea0ff596c49027201442d7b00 (diff)
parente0f9dc0dde79b62b5ab4fa35e48cd8ff7adcbb3a (diff)
downloadzstd-65404fe14ad292bcad07d6e1c6d6e96cdb799eb1.tar.gz
Merge pull request #2923 from IAL32/patch-1
typo: Small spelling mistake in example
-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;
}