From: Lars Ingebrigtsen Date: Wed, 21 Jul 2021 12:22:54 +0000 (+0200) Subject: Remove some "is"es from previous json checkin X-Git-Tag: emacs-28.0.90~1768 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3d956fd0e3d609f384509e7c81f724b5065f3be1;p=emacs.git Remove some "is"es from previous json checkin * lisp/subr.el (json-available-p): * doc/lispref/text.texi (Parsing JSON): Fix typo in last check-in. --- diff --git a/doc/lispref/text.texi b/doc/lispref/text.texi index a3b537ad4ae..e18ba472822 100644 --- a/doc/lispref/text.texi +++ b/doc/lispref/text.texi @@ -5302,7 +5302,7 @@ represents @code{@{@}}, the empty JSON object; not @code{null}, values. @defun json-available-p -This predicate returns non-@code{nil} is Emacs has been built with +This predicate returns non-@code{nil} if Emacs has been built with @acronym{JSON} support, and the library is available on the current system. @end defun diff --git a/lisp/subr.el b/lisp/subr.el index 3d66928b513..49c26cc0d33 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -6312,7 +6312,7 @@ This is intended for internal use only." (internal--fill-string-single-line (apply #'format string objects))) (defun json-available-p () - "Return non-nil if Emacs is has libjansson support." + "Return non-nil if Emacs has libjansson support." (and (fboundp 'json-serialize) (condition-case nil (json-serialize t)