aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/url/url-parse.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/url/url-parse.el b/lisp/url/url-parse.el
index f47ff9a37c3..7d09150d52c 100644
--- a/lisp/url/url-parse.el
+++ b/lisp/url/url-parse.el
@@ -77,9 +77,9 @@
77 77
78;;;###autoload 78;;;###autoload
79(defun url-generic-parse-url (url) 79(defun url-generic-parse-url (url)
80 "Return a vector of the parts of URL. 80 "Return an URL-struct of the parts of URL.
81Format is: 81The CL-style struct contains the following fields:
82\[TYPE USER PASSWORD HOST PORT FILE TARGET ATTRIBUTES FULL\]" 82TYPE USER PASSWORD HOST PORTSPEC FILENAME TARGET ATTRIBUTES FULLNESS."
83 ;; See RFC 3986. 83 ;; See RFC 3986.
84 (cond 84 (cond
85 ((null url) 85 ((null url)