diff options
author | Chet Ramey <chet.ramey@case.edu> | 2019-12-16 09:43:38 -0500 |
---|---|---|
committer | Chet Ramey <chet.ramey@case.edu> | 2019-12-16 09:43:38 -0500 |
commit | 3a7c642e223ec260042bfecc12da49717ae77d76 (patch) | |
tree | a6fecb374f45cd1a37a625dd2ae15a0bce8c3ef9 /lib/readline/doc/rltech.texi | |
parent | c075913eae98742f6051d96682ac8e14c33212ae (diff) | |
download | bash-3a7c642e223ec260042bfecc12da49717ae77d76.tar.gz |
commit bash-20191213 snapshot
Diffstat (limited to 'lib/readline/doc/rltech.texi')
-rw-r--r-- | lib/readline/doc/rltech.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/readline/doc/rltech.texi b/lib/readline/doc/rltech.texi index ff8bd04b..92125d76 100644 --- a/lib/readline/doc/rltech.texi +++ b/lib/readline/doc/rltech.texi @@ -2042,7 +2042,7 @@ remove any quote characters from the directory name, because its result will be passed directly to @code{opendir()}. The directory rewrite hook returns an integer that should be non-zero if -the function modfies its directory argument. +the function modifies its directory argument. The function should not modify the directory argument if it returns 0. @end deftypevar @@ -2054,7 +2054,7 @@ is passed to @code{stat()} to determine the file's type and characteristics. This function does not need to remove quote characters from the filename. The stat hook returns an integer that should be non-zero if -the function modfies its directory argument. +the function modifies its directory argument. The function should not modify the directory argument if it returns 0. @end deftypevar @@ -2648,7 +2648,7 @@ com_help (arg) if (!printed) @{ - printf ("No commands match `%s'. Possibilties are:\n", arg); + printf ("No commands match `%s'. Possibilities are:\n", arg); for (i = 0; commands[i].name; i++) @{ |