diff options
author | stomar <stomar@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-10-12 20:37:30 +0000 |
---|---|---|
committer | stomar <stomar@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-10-12 20:37:30 +0000 |
commit | 08d01949bf021062cf4dc040acdfa944e97c0690 (patch) | |
tree | bfb959ca2dedb3549228289c69967df94016edef /ext/readline/readline.c | |
parent | 580a210350e10a817a71a1e8616e7283586e07d5 (diff) |
readline.c: improve docs
* ext/readline/readline.c: [DOC] fix typo in docs for
Readline.completion_quote_character; enable link to method.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65040 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/readline/readline.c')
-rw-r--r-- | ext/readline/readline.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/readline/readline.c b/ext/readline/readline.c index f044eb8814..3380720f47 100644 --- a/ext/readline/readline.c +++ b/ext/readline/readline.c @@ -1314,12 +1314,12 @@ readline_s_get_completion_append_character(VALUE self) * Readline.completion_quote_character -> char * * When called during a completion (e.g. from within your completion_proc), - * it will return a string containing the chracter used to quote the + * it will return a string containing the character used to quote the * argument being completed, or nil if the argument is unquoted. * * When called at other times, it will always return nil. * - * Note that ``Readline.completer_quote_characters`` must be set, + * Note that Readline.completer_quote_characters must be set, * or this method will always return nil. */ static VALUE |