diff options
author | Gabor Greif <ggreif@gmail.com> | 2018-01-03 16:58:36 +0100 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2018-01-03 17:08:53 +0100 |
commit | 7a25659efc4d22086a9e75dc90e3701c1706c625 (patch) | |
tree | e0fe194599e782610003c7283d30e40b4285317a /docs | |
parent | 298ec78c8832b391c19d662576e59c3e16bd43b0 (diff) | |
download | haskell-7a25659efc4d22086a9e75dc90e3701c1706c625.tar.gz |
Typos in comments
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 6704b87250..34efbfd3e2 100644 --- a/docs/users_guide/glasgow_exts.rst +++ b/docs/users_guide/glasgow_exts.rst @@ -12404,7 +12404,7 @@ Bang patterns and Strict Haskell In high-performance Haskell code (e.g. numeric code) eliminating thunks from an inner loop can be a huge win. GHC supports three extensions to allow the programmer to specify -use of strict (call-by-value) evalution rather than lazy (call-by-need) +use of strict (call-by-value) evaluation rather than lazy (call-by-need) evaluation. - Bang patterns (:extension:`BangPatterns`) makes pattern matching and |