diff options
author | Sebastian Graf <sebastian.graf@kit.edu> | 2021-03-02 11:25:13 +0100 |
---|---|---|
committer | Sebastian Graf <sebastian.graf@kit.edu> | 2021-03-02 11:25:13 +0100 |
commit | 650778ce47fae29fdcfadbb02c6517722861e0d6 (patch) | |
tree | 4d1abfcdcd8c704fb0b7fb1abe26efa8c32fc506 | |
parent | e571eda75f979e315ff87997e58ed99eb9d874c9 (diff) | |
download | haskell-wip/T18610-leftover.tar.gz |
Fix typo in docs [skip ci]wip/T18610-leftover
-rw-r--r-- | docs/users_guide/using-warnings.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/users_guide/using-warnings.rst b/docs/users_guide/using-warnings.rst index 3c09d4c141..c0345fb958 100644 --- a/docs/users_guide/using-warnings.rst +++ b/docs/users_guide/using-warnings.rst @@ -1235,7 +1235,7 @@ of ``-W(no-)*``. second pattern overlaps it. More often than not, redundant patterns is a programmer mistake/error, so this option is enabled by default. - If the programmer is dead set of keeping a redundant clause, + If the programmer is dead set on keeping a redundant clause, for example to prevent bitrot, they can make use of a guard scrutinising ``GHC.Exts.considerAccessible`` to prevent the checker from flagging the parent clause as redundant: :: |