zlib icon indicating copy to clipboard operation
zlib copied to clipboard

Fix minor typos

Open sredna opened this issue 4 years ago • 1 comments

sredna avatar Dec 31 '21 19:12 sredna

https://github.com/madler/zlib/pull/673#issuecomment-1224913167


FWIW, this would make more sense to me.

  /*
     Compare two filenames (fileName1,fileName2).
-    If iCaseSenisivity = 1, comparision is case sensitivity (like strcmp)
-    If iCaseSenisivity = 2, comparision is not case sensitivity (like strcmpi
+    If iCaseSensitivity = 1, comparison is with case sensitivity (like strcmp)
+    If iCaseSensitivity = 2, comparison is without case sensitivity (like strcmpi
                                  or strcasecmp)
-    If iCaseSenisivity = 0, case sensitivity is defaut of your operating system
+    If iCaseSensitivity = 0, case sensitivity is default of your operating system
      (like 1 on Unix, 2 on Windows)
  */

spaette avatar Feb 16 '23 21:02 spaette