Module Name: src
Committed By: abhinav
Date: Tue Oct 25 13:01:59 UTC 2016
Modified Files:
src/bin/sh: TOUR
Log Message:
Fix grammar in couple of sentences.
To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/bin/sh/TOUR
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/bin/sh/TOUR
diff -u src/bin/sh/TOUR:1.10 src/bin/sh/TOUR:1.11
--- src/bin/sh/TOUR:1.10 Sat Nov 15 17:01:38 2008
+++ src/bin/sh/TOUR Tue Oct 25 13:01:59 2016
@@ -1,4 +1,4 @@
-# $NetBSD: TOUR,v 1.10 2008/11/15 17:01:38 snj Exp $
+# $NetBSD: TOUR,v 1.11 2016/10/25 13:01:59 abhinav Exp $
# @(#)TOUR 8.1 (Berkeley) 5/31/93
NOTE -- This is the original TOUR paper distributed with ash and
@@ -119,7 +119,7 @@ operations, but grow the stack if you ru
We now start a top-down look at the code:
MAIN.C: The main routine performs some initialization, executes
-the user's profile if necessary, and calls cmdloop. Cmdloop is
+the user's profile if necessary, and calls cmdloop. Cmdloop
repeatedly parses and executes commands.
OPTIONS.C: This file contains the option processing code. It is
@@ -212,7 +212,7 @@ EXECUTION: Command execution is handled
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 do 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.