[commit: ghc] master: Fix grammaros in comments (2f43615)
git at git.haskell.org
git at git.haskell.org
Tue Oct 17 12:09:47 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : master
Link : http://ghc.haskell.org/trac/ghc/changeset/2f436151f4810b67d10c7d208fa81bef6e53d490/ghc
>---------------------------------------------------------------
commit 2f436151f4810b67d10c7d208fa81bef6e53d490
Author: Gabor Greif <ggreif at gmail.com>
Date: Tue Oct 17 13:44:13 2017 +0200
Fix grammaros in comments
>---------------------------------------------------------------
2f436151f4810b67d10c7d208fa81bef6e53d490
compiler/simplCore/CSE.hs | 2 +-
compiler/stranal/DmdAnal.hs | 2 +-
docs/users_guide/debugging.rst | 2 +-
libraries/ghc-boot/GHC/PackageDb.hs | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/compiler/simplCore/CSE.hs b/compiler/simplCore/CSE.hs
index 16dd64c..65b9af9 100644
--- a/compiler/simplCore/CSE.hs
+++ b/compiler/simplCore/CSE.hs
@@ -213,7 +213,7 @@ WorkWrap (see Note [Wrapper activation]). We can tell because noUserInlineSpec
is then true.
Note that we do not (currently) do CSE on the unfolding stored inside
-an Id, even if is a 'stable' unfolding. That means that when an
+an Id, even if it is a 'stable' unfolding. That means that when an
unfolding happens, it is always faithful to what the stable unfolding
originally was.
diff --git a/compiler/stranal/DmdAnal.hs b/compiler/stranal/DmdAnal.hs
index 44adc81..77da307 100644
--- a/compiler/stranal/DmdAnal.hs
+++ b/compiler/stranal/DmdAnal.hs
@@ -401,7 +401,7 @@ situation actually arises in GHC.IO.Handle.Internals.wantReadableHandle
So if the scrutinee is a primop call, we *don't* apply the
state hack:
- - If is a simple, terminating one like getMaskingState,
+ - If it is a simple, terminating one like getMaskingState,
applying the hack is over-conservative.
- If the primop is raise# then it returns bottom, so
the case alternatives are already discarded.
diff --git a/docs/users_guide/debugging.rst b/docs/users_guide/debugging.rst
index 52abd74..0096c71 100644
--- a/docs/users_guide/debugging.rst
+++ b/docs/users_guide/debugging.rst
@@ -49,7 +49,7 @@ Dumping out compiler intermediate structures
be a bit more eager in forcing pass results to more accurately account for
their costs.
- Two types of messages are produced: Those beginning with ``***`` are
+ Two types of messages are produced: Those beginning with ``***`` do
denote the beginning of a compilation phase whereas those starting with
``!!!`` mark the end of a pass and are accompanied by allocation and
runtime statistics.
diff --git a/libraries/ghc-boot/GHC/PackageDb.hs b/libraries/ghc-boot/GHC/PackageDb.hs
index a59c46e..e2e4694 100644
--- a/libraries/ghc-boot/GHC/PackageDb.hs
+++ b/libraries/ghc-boot/GHC/PackageDb.hs
@@ -249,7 +249,7 @@ lockPackageDbWith mode file = do
-- opened for write access. We would previously try opening the lockfile for
-- read-only access first, however this failed when run on such filesystems.
-- Consequently, we now try read-write access first, falling back to read-only
- -- if are denied permission (e.g. in the case of a global database).
+ -- if we are denied permission (e.g. in the case of a global database).
catchJust
(\e -> if isPermissionError e then Just () else Nothing)
(lockFileOpenIn ReadWriteMode)
More information about the ghc-commits
mailing list