aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/net
diff options
context:
space:
mode:
authorPaul Eggert2015-11-10 10:22:29 -0800
committerPaul Eggert2015-11-10 10:23:00 -0800
commitc92dbd6d0c234ff993acb0a095c024593bc185c8 (patch)
treef6e1be4508825d465244f4849e2ab33209d8cc84 /lisp/net
parentd149ca81c33ab95900306c3c71f6eff62a3ec1a1 (diff)
downloademacs-c92dbd6d0c234ff993acb0a095c024593bc185c8.tar.gz
emacs-c92dbd6d0c234ff993acb0a095c024593bc185c8.zip
Spelling fixes
* lisp/net/soap-inspect.el (soap-inspect-xs-simple-type): Fix misspelling in output.
Diffstat (limited to 'lisp/net')
-rw-r--r--lisp/net/soap-client.el6
-rw-r--r--lisp/net/soap-inspect.el2
2 files changed, 4 insertions, 4 deletions
diff --git a/lisp/net/soap-client.el b/lisp/net/soap-client.el
index 264a39c1899..83173250137 100644
--- a/lisp/net/soap-client.el
+++ b/lisp/net/soap-client.el
@@ -390,7 +390,7 @@ binding) but the same name."
390 390
391;; SOAP WSDL documents use XML Schema to define the types that are part of the 391;; SOAP WSDL documents use XML Schema to define the types that are part of the
392;; message exchange. We include here an XML schema model with a parser and 392;; message exchange. We include here an XML schema model with a parser and
393;; serializer/deserialiser. 393;; serializer/deserializer.
394 394
395(defstruct (soap-xs-type (:include soap-element)) 395(defstruct (soap-xs-type (:include soap-element))
396 id 396 id
@@ -710,7 +710,7 @@ This is a specialization of `soap-decode-type' for
710(defun soap-xs-element-type (element) 710(defun soap-xs-element-type (element)
711 "Retrieve the type of ELEMENT. 711 "Retrieve the type of ELEMENT.
712This is normally stored in the TYPE^ slot, but if this element 712This is normally stored in the TYPE^ slot, but if this element
713contains a reference, we retrive the type of the reference." 713contains a reference, retrieve the type of the reference."
714 (if (soap-xs-element-reference element) 714 (if (soap-xs-element-reference element)
715 (soap-xs-element-type (soap-xs-element-reference element)) 715 (soap-xs-element-type (soap-xs-element-reference element))
716 (soap-xs-element-type^ element))) 716 (soap-xs-element-type^ element)))
@@ -1989,7 +1989,7 @@ This is a specialization of `soap-decode-type' for
1989 ) 1989 )
1990 1990
1991(defun soap-make-wsdl (origin) 1991(defun soap-make-wsdl (origin)
1992 "Create a new WSDL document, loaded from ORIGIN, and intialize it." 1992 "Create a new WSDL document, loaded from ORIGIN, and initialize it."
1993 (let ((wsdl (soap-make-wsdl^ :origin origin))) 1993 (let ((wsdl (soap-make-wsdl^ :origin origin)))
1994 1994
1995 ;; Add the XSD types to the wsdl document 1995 ;; Add the XSD types to the wsdl document
diff --git a/lisp/net/soap-inspect.el b/lisp/net/soap-inspect.el
index f6c7da6c7cd..b01e2bf76f1 100644
--- a/lisp/net/soap-inspect.el
+++ b/lisp/net/soap-inspect.el
@@ -334,7 +334,7 @@ soap-xs-attribute-group, in the current buffer."
334 (insert "\t") 334 (insert "\t")
335 (soap-insert-describe-button type))) 335 (soap-insert-describe-button type)))
336 (when (soap-xs-simple-type-enumeration type) 336 (when (soap-xs-simple-type-enumeration type)
337 (insert "\nEnumeraton values: ") 337 (insert "\nEnumeration values: ")
338 (dolist (e (soap-xs-simple-type-enumeration type)) 338 (dolist (e (soap-xs-simple-type-enumeration type))
339 (insert "\n\t") 339 (insert "\n\t")
340 (pp e))) 340 (pp e)))