]> git.eshelyaron.com Git - emacs.git/commitdiff
(json-alist-p, json-plist-p): Don't use `iff' in docstrings.
authorJuanma Barranquero <lekktu@gmail.com>
Thu, 8 May 2008 03:37:07 +0000 (03:37 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Thu, 8 May 2008 03:37:07 +0000 (03:37 +0000)
lisp/json.el

index a4937711c8541cee649e5710f9d56e8671d97285..3d4c02c588de1b828e7ee4a134d773fae667f116 100644 (file)
@@ -107,13 +107,13 @@ this around your call to `json-read' instead of `setq'ing it.")
   (mapconcat 'identity strings separator))
 
 (defun json-alist-p (list)
-  "Non-null iff LIST is an alist."
+  "Non-null if and only if LIST is an alist."
   (or (null list)
       (and (consp (car list))
            (json-alist-p (cdr list)))))
 
 (defun json-plist-p (list)
-  "Non-null iff LIST is a plist."
+  "Non-null if and only if LIST is a plist."
   (or (null list)
       (and (keywordp (car list))
            (consp (cdr list))