diff lisp/net/sasl-ntlm.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-ntlm.el	Sun Jun 29 01:32:25 2008 +0000
+++ b/lisp/net/sasl-ntlm.el	Sun Jun 29 01:51:51 2008 +0000
@@ -36,12 +36,12 @@
   '(ignore				;nothing to do before making
     sasl-ntlm-request			;authentication request
     sasl-ntlm-response)			;response to challenge
-  "A list of functions to be called in sequnece for the NTLM
-authentication steps.  Ther are called by 'sasl-next-step.")
+  "A list of functions to be called in sequence for the NTLM
+authentication steps.  They are called by `sasl-next-step'.")
 
 (defun sasl-ntlm-request (client step)
   "SASL step function to generate a NTLM authentication request to the server.
-Called from 'sasl-next-step.
+Called from `sasl-next-step'.
 CLIENT is a vector [mechanism user service server sasl-client-properties]
 STEP is a vector [<previous step function> <result of previous step function>]"
   (let ((user (sasl-client-name client)))
@@ -49,7 +49,7 @@
 
 (defun sasl-ntlm-response (client step)
   "SASL step function to generate a NTLM response against the server
-challenge stored in the 2nd element of STEP.  Called from 'sasl-next-step."
+challenge stored in the 2nd element of STEP.  Called from `sasl-next-step'."
   (let* ((user (sasl-client-name client))
 	 (passphrase
 	  (sasl-read-passphrase (format "NTLM passphrase for %s: " user)))