diff options
author | Gabor Greif <ggreif@gmail.com> | 2016-09-28 15:28:38 +0200 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2016-09-28 15:28:38 +0200 |
commit | 0b6024c6fc7c7226d9ba2373eb2a5b7a08311a2e (patch) | |
tree | 86564c908a13dacc7e264ad7f74dc92d84448c63 /docs | |
parent | f897b7427a4804e3285144f57676574d338be1f5 (diff) | |
download | haskell-0b6024c6fc7c7226d9ba2373eb2a5b7a08311a2e.tar.gz |
Comments and manual only: spelling
Diffstat (limited to 'docs')
-rw-r--r-- | docs/users_guide/glasgow_exts.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/users_guide/glasgow_exts.rst b/docs/users_guide/glasgow_exts.rst index 6af26b5815..b41a09a097 100644 --- a/docs/users_guide/glasgow_exts.rst +++ b/docs/users_guide/glasgow_exts.rst @@ -3383,7 +3383,7 @@ example), then we apply the function ``f`` directly to it. If a type is encountered that is not syntactically equivalent to the last type parameter *but does mention* the last type parameter somewhere in it, then a recursive call to ``fmap`` is made. If a type is found which doesn't mention the last -type paramter at all, then it is left alone. +type parameter at all, then it is left alone. The second of those cases, in which a type is unequal to the type parameter but does contain the type parameter, can be surprisingly tricky. For example, the |