diff lisp/net/sasl.el @ 96406:ce3cca778d10

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.
author Juanma Barranquero <lekktu@gmail.com>
date Sun, 29 Jun 2008 01:51:51 +0000
parents 91e5880a36c1
children a9dc0e7c3f2b
line wrap: on
line diff
--- a/lisp/net/sasl.el	Sun Jun 29 01:32:25 2008 +0000
+++ b/lisp/net/sasl.el	Sun Jun 29 01:51:51 2008 +0000
@@ -86,7 +86,7 @@
   (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 @@
 (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 @@
   (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 @@
 
 (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)))