src/: Use gender-neutral language in commentary.
authorMark Wooding <mdw@distorted.org.uk>
Mon, 12 Aug 2019 10:10:32 +0000 (11:10 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Mon, 12 Aug 2019 11:40:24 +0000 (12:40 +0100)
src/parser/scanner-charbuf-impl.lisp
src/pset-proto.lisp

index 37bdd8c..43d1f9f 100644 (file)
 
    Which leaves us with the need to determine whether there are outstanding
    captures.  We simply maintain a counter, and rely on the client releasing
-   captured places properly when he's finished.  In practice, this is usually
-   done using the `peek' parser macro so there isn't a problem."))
+   captured places properly when they've finished.  In practice, this is
+   usually done using the `peek' parser macro so there isn't a problem."))
 
 (export '(charbuf-scanner-place charbuf-scanner-place-p))
 (defstruct charbuf-scanner-place
index 5e02d9b..09547e8 100644 (file)
@@ -95,7 +95,7 @@
     (if (eql type wanted) value
        (error "Incorrect type: expected ~A but found ~A" wanted type)))
 
-  ;; If the caller asks for type T then give him the raw thing.
+  ;; If the caller asks for type T then give them the raw thing.
   (:method (value type (wanted (eql t)))
     (declare (ignore type))
     value))