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/Runtime | |
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/Runtime')
-rw-r--r-- | compiler/GHC/Runtime/Interpreter.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/GHC/Runtime/Interpreter.hs b/compiler/GHC/Runtime/Interpreter.hs index b2df09f35f..6cd00efdd2 100644 --- a/compiler/GHC/Runtime/Interpreter.hs +++ b/compiler/GHC/Runtime/Interpreter.hs @@ -411,7 +411,7 @@ handleSeqHValueStatus :: HscEnv -> EvalStatus () -> IO (EvalResult ()) handleSeqHValueStatus hsc_env eval_status = do case eval_status of (EvalBreak is_exception _ ix mod_uniq resume_ctxt _) -> do - -- A breakpoint was hit, inform the user and tell him + -- A breakpoint was hit; inform the user and tell them -- which breakpoint was hit. resume_ctxt_fhv <- liftIO $ mkFinalizedHValue hsc_env resume_ctxt let hmi = expectJust "handleRunStatus" $ |