]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix soap-inspect.el doc strings
authorThomas Fitzsimmons <fitzsim@fitzsim.org>
Wed, 24 May 2017 19:01:01 +0000 (15:01 -0400)
committerThomas Fitzsimmons <fitzsim@fitzsim.org>
Thu, 25 May 2017 12:49:58 +0000 (08:49 -0400)
* lisp/net/soap-inspect.el (soap-inspect-xs-attribute): Fix doc
string.
(soap-inspect-xs-attribute-group): Likewise.

lisp/net/soap-inspect.el

index cd14eddb4f4e16fe73e08bff1329cbf5befca618..2516bc99248494cb2e1d799797e33adeeb23078f 100644 (file)
@@ -296,8 +296,8 @@ entire WSDL can be inspected."
   (pp (soap-sample-value element) (current-buffer)))
 
 (defun soap-inspect-xs-attribute (attribute)
-  "Insert information about ATTRIBUTE, a soap-xs-attribute, in
-the current buffer."
+  "Insert information about ATTRIBUTE in the current buffer.
+ATTRIBUTE is a soap-xs-attribute."
   (insert "Attribute: " (soap-element-fq-name attribute))
   (insert "\nType: ")
   (soap-insert-describe-button (soap-xs-attribute-type attribute))
@@ -305,8 +305,8 @@ the current buffer."
   (pp (soap-sample-value attribute) (current-buffer)))
 
 (defun soap-inspect-xs-attribute-group (attribute-group)
-  "Insert information about ATTRIBUTE-GROUP, a
-soap-xs-attribute-group, in the current buffer."
+  "Insert information about ATTRIBUTE-GROUP in the current buffer.
+ATTRIBUTE is a soap-xs-attribute-group."
   (insert "Attribute group: " (soap-element-fq-name attribute-group))
   (insert "\nSample values:\n")
   (pp (soap-sample-value attribute-group) (current-buffer)))