summary refs log tree commit diff
path: root/src/TOUR
diff options
context:
space:
mode:
authorMartin Michlmayr <tbm@cyrius.com>2020-05-20 16:08:36 +0800
committerHerbert Xu <herbert@gondor.apana.org.au>2020-05-28 21:34:15 +1000
commitc09c60ae76a4262f645fc8f4c7569d3d97d1a37d (patch)
tree41bb47ff70b6fcd068f381116e029d4101f93d27 /src/TOUR
parentparser: Save and restore heredoclist in expandstr (diff)
downloaddash-c09c60ae76a4262f645fc8f4c7569d3d97d1a37d.tar.gz
dash-c09c60ae76a4262f645fc8f4c7569d3d97d1a37d.zip
shell: Fix typos
Signed-off-by: Martin Michlmayr <tbm@cyrius.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'src/TOUR')
-rw-r--r--src/TOUR4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/TOUR b/src/TOUR
index 056e79b..e30836e 100644
--- a/src/TOUR
+++ b/src/TOUR
@@ -100,7 +100,7 @@ string was going to be:
         p = stackptr;
         *p++ = c;       /* repeated as many times as needed */
         stackptr = p;
-The folloing three macros (defined in memalloc.h) perform these
+The following three macros (defined in memalloc.h) perform these
 operations, but grow the stack if you run off the end:
         STARTSTACKSTR(p);
         STPUTC(c, p);   /* repeated as many times as needed */
@@ -198,7 +198,7 @@ EXECUTION:  Command execution is handled by the following files:
         eval.c     The top level routines.
         redir.c    Code to handle redirection of input and output.
         jobs.c     Code to handle forking, waiting, and job control.
-        exec.c     Code to to path searches and the actual exec sys call.
+        exec.c     Code to path searches and the actual exec sys call.
         expand.c   Code to evaluate arguments.
         var.c      Maintains the variable symbol table.  Called from expand.c.