]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove some "is"es from previous json checkin
authorLars Ingebrigtsen <larsi@gnus.org>
Wed, 21 Jul 2021 12:22:54 +0000 (14:22 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Wed, 21 Jul 2021 12:22:54 +0000 (14:22 +0200)
* lisp/subr.el (json-available-p):
* doc/lispref/text.texi (Parsing JSON): Fix typo in last check-in.

doc/lispref/text.texi
lisp/subr.el

index a3b537ad4aeb2bd24fdd98c879ac3fea55bc8a21..e18ba4728229c0567ed152dda4c5cf01c3cde5b8 100644 (file)
@@ -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
index 3d66928b51373d5d5f126d8bd66c8c18493d1375..49c26cc0d33a36150f7022b405e6086bffb0daa6 100644 (file)
@@ -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)