emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/xml-rpc 132af4f777 1/2: Fix typos found with codespell


From: ELPA Syncer
Subject: [nongnu] elpa/xml-rpc 132af4f777 1/2: Fix typos found with codespell
Date: Wed, 28 Dec 2022 18:59:42 -0500 (EST)

branch: elpa/xml-rpc
commit 132af4f77790a6f4f09e2cbcd9efc179b77a9caa
Author: Stefan Kangas <stefankangas@gmail.com>
Commit: Stefan Kangas <stefankangas@gmail.com>

    Fix typos found with codespell
---
 README.org | 2 +-
 xml-rpc.el | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/README.org b/README.org
index e9317b0028..f281769718 100644
--- a/README.org
+++ b/README.org
@@ -13,7 +13,7 @@ xml-rpc.el represents XML-RPC datatypes as lisp values, 
automatically converting
 
 * Installation:
 
-If you use [[http://elpa.gnu.org/][ELPA]], and have configured the 
[[https://elpa.nongnu.org/][NonGNU ELPA]] or [[https://melpa.org/][MELPA]] 
repository, then =M-x package-install RET xml-rpc RET= interface. This is 
preferrable as you will have access to updates automatically.
+If you use [[http://elpa.gnu.org/][ELPA]], and have configured the 
[[https://elpa.nongnu.org/][NonGNU ELPA]] or [[https://melpa.org/][MELPA]] 
repository, then =M-x package-install RET xml-rpc RET= interface. This is 
preferable as you will have access to updates automatically.
 
 If you would like to use ELPA, but this is your first time to use it, or 
NonGNU ELPA/MELPA, then try evaluating the following code in emacs:
 #+begin_src elisp
diff --git a/xml-rpc.el b/xml-rpc.el
index f83f90a7fa..ce45ac9bf8 100644
--- a/xml-rpc.el
+++ b/xml-rpc.el
@@ -360,7 +360,7 @@ functions in xml.el."
 
 (defsubst xml-rpc-response-errorp (response)
   "An `xml-rpc-method-call' result value is always a list, where the first
-element in RESPONSE is either nil or if an error occured, a cons pair
+element in RESPONSE is either nil or if an error occurred, a cons pair
 according to (errnum . \"Error string\")."
   (eq 'fault (car-safe (caddar response))))
 
@@ -410,7 +410,7 @@ the parsed XML response is returned."
 
 If ASYNC-CALLBACK-FUNCTION is non-nil, the request will be performed
 asynchronously and ASYNC-CALLBACK-FUNCTION should be a callback function to
-be called when the reuest is finished.  ASYNC-CALLBACK-FUNCTION is called with
+be called when the request is finished.  ASYNC-CALLBACK-FUNCTION is called with
 a single argument being an xml.el style XML list.
 
 It returns an XML list containing the method response from the XML-RPC server,
@@ -508,7 +508,7 @@ or nil if called with ASYNC-CALLBACK-FUNCTION."
          ((listp elem)
           (setq result (append result (list (xml-rpc-clean elem)))))
 
-         ;; everthing else, as is.
+         ;; everything else, as is.
          (t
           (setq result (append result (list elem))))))
       result))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]