diff options
author | cracauer <cracauer@FreeBSD.org> | 1999-04-12 15:23:27 +0000 |
---|---|---|
committer | cracauer <cracauer@FreeBSD.org> | 1999-04-12 15:23:27 +0000 |
commit | 6fcc4a0cb05d91b5331818a033a69d2d805324ed (patch) | |
tree | 29bebf38de88bce0a7377cb4177e1792a8383dbd /bin/sh | |
parent | c8003f943407d90c789fd3d91b7d123e870b3aad (diff) | |
download | FreeBSD-src-6fcc4a0cb05d91b5331818a033a69d2d805324ed.zip FreeBSD-src-6fcc4a0cb05d91b5331818a033a69d2d805324ed.tar.gz |
Fix typo in source-explaining comment.
Diffstat (limited to 'bin/sh')
-rw-r--r-- | bin/sh/var.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/sh/var.c b/bin/sh/var.c index 9b9f0ee..eea73c7 100644 --- a/bin/sh/var.c +++ b/bin/sh/var.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)var.c 8.3 (Berkeley) 5/4/95"; #endif static const char rcsid[] = - "$Id: var.c,v 1.12 1998/05/18 06:44:24 charnier Exp $"; + "$Id: var.c,v 1.13 1999/04/03 11:41:46 cracauer Exp $"; #endif /* not lint */ #include <unistd.h> @@ -218,7 +218,7 @@ setvarsafe(name, val, flags) } /* - * Set the value of a variable. The flags argument is stored with the + * Set the value of a variable. The flags argument is tored with the * flags of the variable. If val is NULL, the variable is unset. */ |