Skip to content

Commit 884dfe3

Browse files
committed
Fix language, make URL into link
1 parent aa3e9c2 commit 884dfe3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

message-index/messages/GHC-39999/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ severity: error
66
---
77

88
This error happens when an expression in the code has a type constraint (e.g. `Eq a => a -> a`) requiring an instance of a type class but GHC can‘t find it.
9-
This most commonly happens for two reasons: Either the type is to polymorphic (i.e. general) e.g. `forall a. a` and there is no type signature declaring that the type should have the instance. Or the type is specific e.g. `Bool`, but there is no instance for the desired type class defined for this type.
9+
This most commonly happens for two reasons: Either the type is too polymorphic (i.e. general) e.g. `forall a. a` and there is no type signature declaring that the type should have the instance. Or the type is specific e.g. `Bool`, but there is no instance for the desired type class defined for this type.

message-index/messages/GHC-47854/example2/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: Duplicate field export
55
The module `Example` exports the symbol `answer` twice.
66
In addition to the explicit entry in the export list it's also exported by `Example(..)`.
77

8-
To avoid the warning, remove one of the duplicated mention.
8+
To avoid the warning, remove one of the duplicated mentions.
99

1010
## Error Message
1111

message-index/messages/GHC-53786/case-expr-in-do-block/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Case expression in do-block
44

55
The expression in one branch of the case expression is a `do`-block that's missing a `do`. This triggers a corner case in the grammar of Haskell, and the `case`-expression is interpreted as the pattern part of a bind statement in the top-level `do`-block.
66

7-
More details are available at https://gitlab.haskell.org/ghc/ghc/-/issues/984
7+
More details are available at [https://gitlab.haskell.org/ghc/ghc/-/issues/984](https://gitlab.haskell.org/ghc/ghc/-/issues/984)
88

99
## Error Message
1010

0 commit comments

Comments
 (0)