summaryrefslogtreecommitdiff
path: root/testsuite
diff options
context:
space:
mode:
authorVikraman Choudhury <git@vikraman.org>2015-05-06 07:46:28 -0500
committerAustin Seipp <austin@well-typed.com>2015-05-06 07:50:30 -0500
commit458a97b86ad154812d08e0fe3548b88ac8412b4f (patch)
treedc778931d8be034dbafc10c5670f7b4445f35ef7 /testsuite
parentf7daf5afe2ba4f60f60245fa82306b89a272ffa8 (diff)
downloadhaskell-458a97b86ad154812d08e0fe3548b88ac8412b4f.tar.gz
Fix typo: identifer -> identifier
I noticed this typo while using template haskell. Signed-off-by: Vikraman Choudhury <git@vikraman.org> Test Plan: ``` λ> :set -XTemplateHaskell λ> :m +Language.Haskell.TH λ> data Foo = Foo λ> $(conE ''Foo) <interactive>:9:9: Type constructor ‘Foo’ used where a value identifier was expected In the expression: Foo In an equation for ‘f’: f = Foo ``` Reviewed By: bgamari Differential Revision: https://phabricator.haskell.org/D871
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/tests/rename/should_compile/rn040.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/tests/rename/should_compile/rn040.hs b/testsuite/tests/rename/should_compile/rn040.hs
index 3a74abe3fd..2ad49e1828 100644
--- a/testsuite/tests/rename/should_compile/rn040.hs
+++ b/testsuite/tests/rename/should_compile/rn040.hs
@@ -1,7 +1,7 @@
{-# OPTIONS -fwarn-unused-binds #-}
module ShouldCompile where
--- !!! should produce warnings about unused identifers
+-- !!! should produce warnings about unused identifiers
x :: [()]
x = [ () | y <- [] ]