diff options
author | Gabor Greif <ggreif@gmail.com> | 2017-01-23 09:38:15 +0100 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2017-01-23 11:27:22 +0100 |
commit | 80560e69ca40abb2c94c4e9fa322365f558a6a8b (patch) | |
tree | ba0122a93709a34daeb4db992651e98f3937dc7e /compiler/rename | |
parent | 2b64e926a628fb2a3710b0360123ea73331166fe (diff) | |
download | haskell-80560e69ca40abb2c94c4e9fa322365f558a6a8b.tar.gz |
Typos and grammar in manual/comments
Diffstat (limited to 'compiler/rename')
-rw-r--r-- | compiler/rename/RnTypes.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rename/RnTypes.hs b/compiler/rename/RnTypes.hs index 421fba5ef0..91d697899a 100644 --- a/compiler/rename/RnTypes.hs +++ b/compiler/rename/RnTypes.hs @@ -1121,7 +1121,7 @@ the programmer actually wrote, so you can't find it out from the Name. Furthermore, the second argument is guaranteed not to be another operator application. Why? Because the parser parses all -operator appications left-associatively, EXCEPT negation, which +operator applications left-associatively, EXCEPT negation, which we need to handle specially. Infix types are read in a *right-associative* way, so that a `op` b `op` c |