; Grammar fixes

* doc/misc/erc.texi (Connecting):

* lisp/erc/erc.el (erc-compute-server, erc-compute-nick)
(erc-compute-full-name, erc-compute-port): Replace "a number of
increasingly more" with an alternative more grammatical.
This commit is contained in:
Po Lu 2024-08-12 08:10:36 +08:00
parent 5c3d340e00
commit c49724b964
2 changed files with 10 additions and 10 deletions

View file

@ -867,8 +867,8 @@ ERC's auth-source integration}.
@defun erc-compute-server &optional server @defun erc-compute-server &optional server
Return an IRC server name. Return an IRC server name.
This tries a number of increasingly more default methods until a non-@code{nil} This tries a progressively greater number of default methods until a
value is found. non-@code{nil} value is found.
@itemize @bullet @itemize @bullet
@item @var{server} (the argument passed to this function) @item @var{server} (the argument passed to this function)
@ -888,8 +888,8 @@ IRC server to use if one is not provided.
@defun erc-compute-port &optional port @defun erc-compute-port &optional port
Return a port for an IRC server. Return a port for an IRC server.
This tries a number of increasingly more default methods until a non-@code{nil} This tries a progressively greater number of default methods until a
value is found. non-@code{nil} value is found.
@itemize @bullet @itemize @bullet
@item @var{port} (the argument passed to this function) @item @var{port} (the argument passed to this function)
@ -910,7 +910,7 @@ This can be either a string or a number.
@defun erc-compute-nick &optional nick @defun erc-compute-nick &optional nick
Return user's IRC nick. Return user's IRC nick.
This tries a number of increasingly more default methods until a This tries a progressively greater number of default methods until a
non-@code{nil} value is found. non-@code{nil} value is found.
@itemize @itemize
@ -1010,7 +1010,7 @@ auth-source facility to retrieve a server password, although hitting
@defun erc-compute-full-name &optional full-name @defun erc-compute-full-name &optional full-name
Return user's full name. Return user's full name.
This tries a number of increasingly more default methods until a This tries a progressively greater number of default methods until a
non-@code{nil} value is found. non-@code{nil} value is found.
@itemize @bullet @itemize @bullet

View file

@ -8794,7 +8794,7 @@ Sets the buffer local variables:
(defun erc-compute-server (&optional server) (defun erc-compute-server (&optional server)
"Return an IRC server name. "Return an IRC server name.
This tries a number of increasingly more default methods until a This tries a progressively greater number of default methods until a
non-nil value is found. non-nil value is found.
- SERVER (the argument passed to this function) - SERVER (the argument passed to this function)
@ -8813,7 +8813,7 @@ non-nil value is found.
(defun erc-compute-nick (&optional nick) (defun erc-compute-nick (&optional nick)
"Return user's IRC nick. "Return user's IRC nick.
This tries a number of increasingly more default methods until a This tries a progressively greater number of default methods until a
non-nil value is found. non-nil value is found.
- NICK (the argument passed to this function) - NICK (the argument passed to this function)
@ -8837,7 +8837,7 @@ the user field and use whatever it returns as the server password."
(defun erc-compute-full-name (&optional full-name) (defun erc-compute-full-name (&optional full-name)
"Return user's full name. "Return user's full name.
This tries a number of increasingly more default methods until a This tries a progressively greater number of default methods until a
non-nil value is found. non-nil value is found.
- FULL-NAME (the argument passed to this function) - FULL-NAME (the argument passed to this function)
@ -8853,7 +8853,7 @@ non-nil value is found.
(defun erc-compute-port (&optional port) (defun erc-compute-port (&optional port)
"Return a port for an IRC server. "Return a port for an IRC server.
This tries a number of increasingly more default methods until a This tries a progressively greater number of default methods until a
non-nil value is found. non-nil value is found.
- PORT (the argument passed to this function) - PORT (the argument passed to this function)