diff options
| author | Thomas Fitzsimmons | 2017-05-24 15:01:01 -0400 |
|---|---|---|
| committer | Thomas Fitzsimmons | 2017-05-25 08:49:58 -0400 |
| commit | 4fa8336b033c706ca4c635983bec1ce87df7d184 (patch) | |
| tree | b58cede48924fedd15eb3057ac25615cc81191ae | |
| parent | a928cfae6046066180a445fab387bb1a57f8395c (diff) | |
| download | emacs-4fa8336b033c706ca4c635983bec1ce87df7d184.tar.gz emacs-4fa8336b033c706ca4c635983bec1ce87df7d184.zip | |
Fix soap-inspect.el doc strings
* lisp/net/soap-inspect.el (soap-inspect-xs-attribute): Fix doc
string.
(soap-inspect-xs-attribute-group): Likewise.
| -rw-r--r-- | lisp/net/soap-inspect.el | 8 |
1 files 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." | |||
| 296 | (pp (soap-sample-value element) (current-buffer))) | 296 | (pp (soap-sample-value element) (current-buffer))) |
| 297 | 297 | ||
| 298 | (defun soap-inspect-xs-attribute (attribute) | 298 | (defun soap-inspect-xs-attribute (attribute) |
| 299 | "Insert information about ATTRIBUTE, a soap-xs-attribute, in | 299 | "Insert information about ATTRIBUTE in the current buffer. |
| 300 | the current buffer." | 300 | ATTRIBUTE is a soap-xs-attribute." |
| 301 | (insert "Attribute: " (soap-element-fq-name attribute)) | 301 | (insert "Attribute: " (soap-element-fq-name attribute)) |
| 302 | (insert "\nType: ") | 302 | (insert "\nType: ") |
| 303 | (soap-insert-describe-button (soap-xs-attribute-type attribute)) | 303 | (soap-insert-describe-button (soap-xs-attribute-type attribute)) |
| @@ -305,8 +305,8 @@ the current buffer." | |||
| 305 | (pp (soap-sample-value attribute) (current-buffer))) | 305 | (pp (soap-sample-value attribute) (current-buffer))) |
| 306 | 306 | ||
| 307 | (defun soap-inspect-xs-attribute-group (attribute-group) | 307 | (defun soap-inspect-xs-attribute-group (attribute-group) |
| 308 | "Insert information about ATTRIBUTE-GROUP, a | 308 | "Insert information about ATTRIBUTE-GROUP in the current buffer. |
| 309 | soap-xs-attribute-group, in the current buffer." | 309 | ATTRIBUTE is a soap-xs-attribute-group." |
| 310 | (insert "Attribute group: " (soap-element-fq-name attribute-group)) | 310 | (insert "Attribute group: " (soap-element-fq-name attribute-group)) |
| 311 | (insert "\nSample values:\n") | 311 | (insert "\nSample values:\n") |
| 312 | (pp (soap-sample-value attribute-group) (current-buffer))) | 312 | (pp (soap-sample-value attribute-group) (current-buffer))) |