diff options
author | Richard Eisenberg <rae@richarde.dev> | 2020-10-28 17:51:42 -0400 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-10-29 22:08:13 -0400 |
commit | 7f8be3eb3440a152246a1aef7b4020be4c03cf2e (patch) | |
tree | ec538f8dc51202d032fd1089220c02ba0cb34f9e /compiler/GHC/Parser | |
parent | 2ef2fac4c412a25fa64f79b759d69d22a4ebc784 (diff) | |
download | haskell-7f8be3eb3440a152246a1aef7b4020be4c03cf2e.tar.gz |
Remove unnecessary gender from comments/docs
While, say, alternating "he" and "she" in sequential writing
may be nicer than always using "they", reading code/documentation
is almost never sequential. If this small change makes individuals
feel more welcome in GHC's codebase, that's a good thing.
Diffstat (limited to 'compiler/GHC/Parser')
-rw-r--r-- | compiler/GHC/Parser/PostProcess.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/GHC/Parser/PostProcess.hs b/compiler/GHC/Parser/PostProcess.hs index 31e861a215..20a8f179d1 100644 --- a/compiler/GHC/Parser/PostProcess.hs +++ b/compiler/GHC/Parser/PostProcess.hs @@ -338,8 +338,8 @@ mkSpliceDecl :: LHsExpr GhcPs -> HsDecl GhcPs -- If the user wrote -- [pads| ... ] then return a QuasiQuoteD -- $(e) then return a SpliceD --- but if she wrote, say, --- f x then behave as if she'd written $(f x) +-- but if they wrote, say, +-- f x then behave as if they'd written $(f x) -- ie a SpliceD -- -- Typed splices are not allowed at the top level, thus we do not represent them |