diff options
author | Christopher Faylor <me@cgf.cx> | 2001-07-19 15:27:59 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2001-07-19 15:27:59 +0000 |
commit | aea57aa057b8d61aa220c17089a02fcfac4b7ec3 (patch) | |
tree | b84b25b973c75f9821c32b7226ce165e5f028a51 /winsup/utils/utils.sgml | |
parent | 4e1965bb51fcbd98c36147bb7db6dba6c2dd2ee2 (diff) | |
download | newlib-aea57aa057b8d61aa220c17089a02fcfac4b7ec3.zip newlib-aea57aa057b8d61aa220c17089a02fcfac4b7ec3.tar.gz newlib-aea57aa057b8d61aa220c17089a02fcfac4b7ec3.tar.bz2 |
fix typo.
Diffstat (limited to 'winsup/utils/utils.sgml')
-rw-r--r-- | winsup/utils/utils.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/utils/utils.sgml b/winsup/utils/utils.sgml index 435b661..2e45788 100644 --- a/winsup/utils/utils.sgml +++ b/winsup/utils/utils.sgml @@ -108,7 +108,7 @@ omitted.</para> <example><title>Example cygpath usage</title> <screen> #!/bin/sh -for i in `echo *.exe | sed 's/\.exe/cc/'` +for i in `echo *.exe | sed 's/\.exe/.cc/'` do notepad "`cygpath -w $i`" done |