diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2016-10-08 10:28:47 +0100 |
---|---|---|
committer | Matthew Pickering <matthewtpickering@gmail.com> | 2016-10-08 10:30:19 +0100 |
commit | f2d80de4b6aa7c3b5b9da20d7569907662d39bbe (patch) | |
tree | e4508fe3f6c056ca073beab176ce36e8b4349884 | |
parent | e660f4bf546e90fb6719ad268ca3daaecdce4b82 (diff) | |
download | haskell-f2d80de4b6aa7c3b5b9da20d7569907662d39bbe.tar.gz |
Add trailing comma to fix the build.
-rw-r--r-- | compiler/rename/RnNames.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rename/RnNames.hs b/compiler/rename/RnNames.hs index 5ea5dacdb4..3b37b18cc2 100644 --- a/compiler/rename/RnNames.hs +++ b/compiler/rename/RnNames.hs @@ -13,7 +13,7 @@ module RnNames ( calculateAvails, reportUnusedNames, plusAvail, - checkConName + checkConName, nubAvails, mkChildEnv, findChildren, |