summary refs log tree commit diff
path: root/Src/main.c
diff options
context:
space:
mode:
authorMartijn Dekker <martijn@inlv.org>2019-12-10 20:41:08 +0100
committerDaniel Shahaf <danielsh@apache.org>2019-12-11 02:37:39 +0000
commitc578f0a08b9257f3db85dab5431270f1a6eb8858 (patch)
treec643f7c8965fa71d4248045d2a1a0b90a0c5a365 /Src/main.c
parentd81238ee955f074cb2c303ce6047bfa7e513d772 (diff)
downloadzsh-c578f0a08b9257f3db85dab5431270f1a6eb8858.tar.gz
zsh-c578f0a08b9257f3db85dab5431270f1a6eb8858.tar.xz
zsh-c578f0a08b9257f3db85dab5431270f1a6eb8858.zip
45004: Fix typos in comments
Diffstat (limited to 'Src/main.c')
-rw-r--r--Src/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Src/main.c b/Src/main.c
index 30eef5a25..bad698ee7 100644
--- a/Src/main.c
+++ b/Src/main.c
@@ -34,7 +34,7 @@
  * Support for Cygwin binary/text mode filesystems.
  * Peter A. Castro <doctor@fruitbat.org>
  *
- * This deserves some explaination, because it uses Cygwin specific
+ * This deserves some explanation, because it uses Cygwin specific
  * runtime functions.
  *
  * Cygwin supports the notion of binary or text mode access to files
@@ -43,7 +43,7 @@
  * and all.  If it's on a text mounted filesystem, Cygwin will strip out
  * the CRs.  This presents a problem because zsh code doesn't allow for
  * CRLF's as line terminators.  So, we must force all open files to be
- * in text mode reguardless of the underlying filesystem attributes.
+ * in text mode regardless of the underlying filesystem attributes.
  * However, we only want to do this for reading, not writing as we still
  * want to write files in the mode of the filesystem.  To do this,
  * we have two options: augment all {f}open() calls to have O_TEXT added to