From 4fa8336b033c706ca4c635983bec1ce87df7d184 Mon Sep 17 00:00:00 2001 From: Thomas Fitzsimmons Date: Wed, 24 May 2017 15:01:01 -0400 Subject: [PATCH] Fix soap-inspect.el doc strings * lisp/net/soap-inspect.el (soap-inspect-xs-attribute): Fix doc string. (soap-inspect-xs-attribute-group): Likewise. --- lisp/net/soap-inspect.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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))) -- 2.39.2