From: Po Lu Date: Mon, 12 Aug 2024 00:10:36 +0000 (+0800) Subject: ; Grammar fixes X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=df70f17f21c6531cbaaad6f7504153b719ed1a75;p=emacs.git ; 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. (cherry picked from commit c49724b96493dc557abcc9014165364d2d624222) --- diff --git a/doc/misc/erc.texi b/doc/misc/erc.texi index c7822793a20..9cfb12c9231 100644 --- a/doc/misc/erc.texi +++ b/doc/misc/erc.texi @@ -867,8 +867,8 @@ ERC's auth-source integration}. @defun erc-compute-server &optional server Return an IRC server name. -This tries a number of increasingly more default methods until a non-@code{nil} -value is found. +This tries a progressively greater number of default methods until a +non-@code{nil} value is found. @itemize @bullet @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 Return a port for an IRC server. -This tries a number of increasingly more default methods until a non-@code{nil} -value is found. +This tries a progressively greater number of default methods until a +non-@code{nil} value is found. @itemize @bullet @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 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. @itemize @@ -1010,7 +1010,7 @@ auth-source facility to retrieve a server password, although hitting @defun erc-compute-full-name &optional 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. @itemize @bullet diff --git a/lisp/erc/erc.el b/lisp/erc/erc.el index b7679fa2e8e..6da73af5f70 100644 --- a/lisp/erc/erc.el +++ b/lisp/erc/erc.el @@ -8793,7 +8793,7 @@ Sets the buffer local variables: (defun erc-compute-server (&optional server) "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. - SERVER (the argument passed to this function) @@ -8812,7 +8812,7 @@ non-nil value is found. (defun erc-compute-nick (&optional 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. - NICK (the argument passed to this function) @@ -8836,7 +8836,7 @@ the user field and use whatever it returns as the server password." (defun erc-compute-full-name (&optional 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. - FULL-NAME (the argument passed to this function) @@ -8852,7 +8852,7 @@ non-nil value is found. (defun erc-compute-port (&optional port) "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. - PORT (the argument passed to this function)