; Fix some typos in doc strings and manuals
This commit is contained in:
parent
af464e4380
commit
2c2dfbbbf0
12 changed files with 23 additions and 23 deletions
|
@ -438,7 +438,7 @@ Presumes point is at the end of the `cl-defmethod' symbol."
|
|||
;;;###autoload
|
||||
(defmacro cl-defmethod (name args &rest body)
|
||||
"Define a new method for generic function NAME.
|
||||
This it defines an implementation of NAME to use for invocations
|
||||
This defines an implementation of NAME to use for invocations
|
||||
of specific types of arguments.
|
||||
|
||||
ARGS is a list of dispatch arguments (see `cl-defun'), but where
|
||||
|
|
|
@ -63,7 +63,7 @@ If this variable is set to 0, no idle time is required."
|
|||
:type 'number)
|
||||
|
||||
(defcustom eldoc-print-after-edit nil
|
||||
"If non-nil eldoc info is only shown when editing.
|
||||
"If non-nil, eldoc info is only shown when editing.
|
||||
Changing the value requires toggling `eldoc-mode'."
|
||||
:type 'boolean)
|
||||
|
||||
|
@ -391,12 +391,12 @@ name, inside its arg list, or on any object with some associated
|
|||
information.
|
||||
|
||||
Each hook function is called with at least one argument CALLBACK,
|
||||
a function, and decides whether to display a doc short string
|
||||
a function, and decides whether to display a short doc string
|
||||
about the context around point.
|
||||
|
||||
- If that decision can be taken quickly, the hook function may
|
||||
call CALLBACK immediately following the protocol described
|
||||
below. Alternatively it may ignore CALLBACK entirely and
|
||||
call CALLBACK immediately, following the protocol described
|
||||
below. Alternatively, it may ignore CALLBACK entirely and
|
||||
return either the doc string, or nil if there's no doc
|
||||
appropriate for the context.
|
||||
|
||||
|
@ -688,11 +688,11 @@ following values are allowed:
|
|||
- `eldoc-documentation-compose': calls all functions in the
|
||||
special hook and displays all of the resulting doc strings
|
||||
together. Wait for all strings to be ready, and preserve their
|
||||
relative as specified by the order of functions in the hook;
|
||||
relative order as specified by the order of functions in the hook;
|
||||
|
||||
- `eldoc-documentation-compose-eagerly': calls all functions in
|
||||
the special hook and display as many of the resulting doc
|
||||
strings as possible, as soon as possible. Preserving the
|
||||
the special hook and displays as many of the resulting doc
|
||||
strings as possible, as soon as possible. Preserves the
|
||||
relative order of doc strings;
|
||||
|
||||
- `eldoc-documentation-enthusiast': calls all functions in the
|
||||
|
@ -793,7 +793,7 @@ function passes responsibility to the functions in
|
|||
Other third-party values of `eldoc-documentation-strategy' should
|
||||
not use `eldoc--make-callback'. They must find some alternate
|
||||
way to produce callbacks to feed to
|
||||
`eldoc-documentation-function' and should endeavour to display
|
||||
`eldoc-documentation-functions' and should endeavour to display
|
||||
the docstrings eventually produced, using
|
||||
`eldoc-display-functions'."
|
||||
(let* (;; How many callbacks have been created by the strategy
|
||||
|
|
|
@ -1210,7 +1210,7 @@ unmatchable Never match anything at all.
|
|||
CHARCLASS Match a character from a character class. One of:
|
||||
alpha, alphabetic, letter Alphabetic characters (defined by Unicode).
|
||||
alnum, alphanumeric Alphabetic or decimal digit chars (Unicode).
|
||||
digit numeric, num 0-9.
|
||||
digit, numeric, num 0-9.
|
||||
xdigit, hex-digit, hex 0-9, A-F, a-f.
|
||||
cntrl, control ASCII codes 0-31.
|
||||
blank Horizontal whitespace (Unicode).
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue