summaryrefslogtreecommitdiff
path: root/lisp/net/sasl.el
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2008-06-29 01:51:51 +0000
committerJuanma Barranquero <lekktu@gmail.com>2008-06-29 01:51:51 +0000
commitea5973038f28cad9eb6206bc386a02705b7d997a (patch)
treecb43dc18a45b05caf7f88352a0400a7e67102438 /lisp/net/sasl.el
parentf059add3889601ca1e4d7bdb74bc3e717c3dec23 (diff)
downloademacs-ea5973038f28cad9eb6206bc386a02705b7d997a.tar.gz
emacs-ea5973038f28cad9eb6206bc386a02705b7d997a.tar.bz2
emacs-ea5973038f28cad9eb6206bc386a02705b7d997a.zip
Fix typos.
* lisp/net/sasl.el (sasl-client-set-property, sasl-make-mechanism) (sasl-find-mechanism, sasl-next-step): * lisp/net/sasl-ntlm.el (sasl-ntlm-steps, sasl-ntlm-request) (sasl-ntlm-response): Fix typos in docstrings. * doc/misc/sasl.texi (Mechanisms): Fix typos.
Diffstat (limited to 'lisp/net/sasl.el')
-rw-r--r--lisp/net/sasl.el12
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/net/sasl.el b/lisp/net/sasl.el
index 23d8e622751..6616bffc343 100644
--- a/lisp/net/sasl.el
+++ b/lisp/net/sasl.el
@@ -86,7 +86,7 @@ The second argument PLIST is the new property list."
(setplist (aref client 4) plist))
(defun sasl-client-set-property (client property value)
- "Add the given property/value to CLIENT."
+ "Add the given PROPERTY/VALUE to CLIENT."
(put (aref client 4) property value))
(defun sasl-client-property (client property)
@@ -103,7 +103,7 @@ The second argument PLIST is the new property list."
(defun sasl-make-mechanism (name steps)
"Make an authentication mechanism.
NAME is a IANA registered SASL mechanism name.
-STEPS is list of continuation function."
+STEPS is list of continuation functions."
(vector name
(mapcar
(lambda (step)
@@ -121,7 +121,7 @@ STEPS is list of continuation function."
(aref mechanism 1))
(defun sasl-find-mechanism (mechanisms)
- "Retrieve an apropriate mechanism object from MECHANISMS hints."
+ "Retrieve an appropriate mechanism object from MECHANISMS hints."
(let* ((sasl-mechanisms sasl-mechanisms)
(mechanism
(catch 'done
@@ -147,9 +147,9 @@ STEPS is list of continuation function."
(defun sasl-next-step (client step)
"Evaluate the challenge and prepare an appropriate next response.
-The data type of the value and optional 2nd argument STEP is nil or
-opaque authentication step which holds the reference to the next action
-and the current challenge. At the first time STEP should be set to nil."
+The data type of the value and 2nd argument STEP is nil or opaque
+authentication step which holds the reference to the next action and
+the current challenge. At the first time STEP should be set to nil."
(let* ((steps
(sasl-mechanism-steps
(sasl-client-mechanism client)))