summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorStefano Lattarini <stefano.lattarini@gmail.com>2011-08-08 19:20:44 +0200
committerStefano Lattarini <stefano.lattarini@gmail.com>2011-08-08 22:19:19 +0200
commitf36755ebbb1c05530b880c97f228a9c97709d1aa (patch)
tree39d34ee195a928ac561d4e278691775d537c4146 /doc
parent4b75742acc01e40405b475f32c5db61ca35a9ff7 (diff)
downloadautoconf-f36755ebbb1c05530b880c97f228a9c97709d1aa.tar.gz
docs: fix minor typos
* doc/autoconf.texi (Shell Functions): Fix a couple of minor typos.
Diffstat (limited to 'doc')
-rw-r--r--doc/autoconf.texi6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/autoconf.texi b/doc/autoconf.texi
index c6837ebd..7c1818d5 100644
--- a/doc/autoconf.texi
+++ b/doc/autoconf.texi
@@ -16929,11 +16929,11 @@ segmentation fault. To work around the issue, you can use
in the execution flow of the function (@pxref{Common Shell Constructs}).
Not all shells treat shell functions as simple commands impacted by
-@samp{set -e}, for example with Solaris 10 @command{bin/sh}:
+@samp{set -e}, for example with Solaris 10 @command{/bin/sh}:
@example
-$ @kbd{bash -c 'f() @{ return 1; @}; set -e; f; echo oops}
-$ @kbd{/bin/sh -c 'f() @{ return 1; @}; set -e; f; echo oops}
+$ @kbd{bash -c 'f() @{ return 1; @}; set -e; f; echo oops'}
+$ @kbd{/bin/sh -c 'f() @{ return 1; @}; set -e; f; echo oops'}
oops
@end example