* doc/autoconf.texi (Shell Functions): Fix a couple of minor typos.
+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 `:'
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