From: Thomas Fitzsimmons Date: Wed, 24 May 2017 19:01:01 +0000 (-0400) Subject: Fix soap-inspect.el doc strings X-Git-Tag: emacs-26.0.90~521^2~268 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4fa8336b033c706ca4c635983bec1ce87df7d184;p=emacs.git Fix soap-inspect.el doc strings * lisp/net/soap-inspect.el (soap-inspect-xs-attribute): Fix doc string. (soap-inspect-xs-attribute-group): Likewise. --- diff --git a/lisp/net/soap-inspect.el b/lisp/net/soap-inspect.el index cd14eddb4f4..2516bc99248 100644 --- a/lisp/net/soap-inspect.el +++ b/lisp/net/soap-inspect.el @@ -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)))