]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
docs: fix minor typos
authorStefano Lattarini <stefano.lattarini@gmail.com>
Mon, 8 Aug 2011 17:20:44 +0000 (19:20 +0200)
committerStefano Lattarini <stefano.lattarini@gmail.com>
Mon, 8 Aug 2011 20:19:19 +0000 (22:19 +0200)
* doc/autoconf.texi (Shell Functions): Fix a couple of minor typos.

ChangeLog
doc/autoconf.texi

index 4d850bd884b1a9f6c93e88e1acf721da81382678..6ca51fd66f72ce4592b75680ed8d35b76e6d5f41 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2011-08-08  Stefano Lattarini  <stefano.lattarini@gmail.com>
+
+       docs: fix minor typos
+       * doc/autoconf.texi (Shell Functions): Fix a couple of minor typos.
+
 2011-08-04  Stefano Lattarini  <stefano.lattarini@gmail.com>
 
        docs: another Solaris sh bug with redirected `:'
index c6837ebd4080ff82e4f56c46459883a3110957c3..7c1818d59793e737d18ebc0da5f09ecadf9a0430 100644 (file)
@@ -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