From: Mark Wooding Date: Mon, 12 Aug 2019 10:10:32 +0000 (+0100) Subject: src/: Use gender-neutral language in commentary. X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/sod/commitdiff_plain/ffaadb2bd69232066e6d99f25eac0fa8f09c11f4 src/: Use gender-neutral language in commentary. --- diff --git a/src/parser/scanner-charbuf-impl.lisp b/src/parser/scanner-charbuf-impl.lisp index 37bdd8c..43d1f9f 100644 --- a/src/parser/scanner-charbuf-impl.lisp +++ b/src/parser/scanner-charbuf-impl.lisp @@ -107,8 +107,8 @@ (defclass charbuf-scanner (character-scanner) 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 diff --git a/src/pset-proto.lisp b/src/pset-proto.lisp index 5e02d9b..09547e8 100644 --- a/src/pset-proto.lisp +++ b/src/pset-proto.lisp @@ -95,7 +95,7 @@ (defgeneric coerce-property-value (value type wanted) (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))