Skip to content

Commit 41d47c7

Browse files
fixup! document GHC-55666
1 parent f009f88 commit 41d47c7

File tree

1 file changed

+1
-1
lines changed
  • message-index/messages/GHC-55666

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ A strictness annotation (also called a bang: `!`) can be used to denote that a v
1010
In some cases this can lead to faster code because fewer heap allocations are required.
1111
Here it is used to mark a that a field in a datatype should not be evaluated lazily.
1212

13-
However, unlifted types like `Int#` are strict by definition because they are a value,
13+
However, values of unlifted types like `Int#` are strict by definition because they represent an actual value,
1414
not a pointer to a potentially unevaluated value (thunk).
1515

1616
Therefore, adding strictness annotations to unlifted types or fields of such types is redundant.

0 commit comments

Comments
 (0)