diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2011-11-15 18:37:37 +0100 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2011-11-15 18:37:37 +0100 |
commit | c7015153512a7d00aba390cc1f9a6b512a9c9ed7 (patch) | |
tree | 273167d1dbfc68a60ad4c195b9cd0bcfae9a302d /lisp/url/url-dav.el | |
parent | dcecfb4cb41ffa672672f55df8ce20deb7af78c4 (diff) |
Fix typos.
Diffstat (limited to 'lisp/url/url-dav.el')
-rw-r--r-- | lisp/url/url-dav.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/url/url-dav.el b/lisp/url/url-dav.el index 95ab2623ff..9e29de0cbe 100644 --- a/lisp/url/url-dav.el +++ b/lisp/url/url-dav.el @@ -117,7 +117,7 @@ ;; We need to populate 'time' with ;; (SEC MIN HOUR DAY MON YEAR DOW DST TZ) - ;; Nobody else handles iso8601 correctly, lets do it ourselves. + ;; Nobody else handles iso8601 correctly, let's do it ourselves. (when (string-match date-re date-string re-start) (setq year (string-to-number (match-string 1 date-string)) month (string-to-number (match-string 2 date-string)) @@ -430,7 +430,7 @@ added to this list, so most requests can just pass in nil." ;; Take care of the default value for depth... (setq depth (or depth 0)) - ;; Now lets translate it into something webdav can understand. + ;; Now let's translate it into something webdav can understand. (if (< depth 0) (setq depth "Infinity") (setq depth (int-to-string depth))) @@ -762,7 +762,7 @@ files in the collection as well." (setq status (plist-get (cdr result) 'DAV:status)) (if (not (url-dav-http-success-p status)) (signal 'file-error (list "Removing old name" - "Errror removing" + "Error removing" (car result) status)))) props)) nil) |