(json-alist-p, json-plist-p): Don't use `iff' in docstrings.

This commit is contained in:
Juanma Barranquero 2008-05-08 03:37:07 +00:00
parent d4f635a5ae
commit 398d17daba

View 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))