summaryrefslogtreecommitdiff
path: root/compiler/GHC/Types
diff options
context:
space:
mode:
authorMatthew Pickering <matthewtpickering@gmail.com>2022-02-03 17:15:05 +0000
committerMarge Bot <ben+marge-bot@smart-cactus.org>2022-02-08 05:28:42 -0500
commit38c6e301165777b88cc172aafed1b33d6f42099b (patch)
treebb97c29f4d2701c32811ae98e7ea523da0bc0a2a /compiler/GHC/Types
parentbc5cbce61b57f57cadf5c25fa3e60cf34c3b98ea (diff)
downloadhaskell-38c6e301165777b88cc172aafed1b33d6f42099b.tar.gz
Fix some notes
Diffstat (limited to 'compiler/GHC/Types')
-rw-r--r--compiler/GHC/Types/SourceText.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/GHC/Types/SourceText.hs b/compiler/GHC/Types/SourceText.hs
index 9faba4460b..725637e9d7 100644
--- a/compiler/GHC/Types/SourceText.hs
+++ b/compiler/GHC/Types/SourceText.hs
@@ -175,7 +175,7 @@ data FractionalLit = FL
, fl_neg :: Bool -- See Note [Negative zero]
, fl_signi :: Rational -- The significand component of the literal
, fl_exp :: Integer -- The exponent component of the literal
- , fl_exp_base :: FractionalExponentBase -- See Note [Fractional exponent bases]
+ , fl_exp_base :: FractionalExponentBase -- See Note [fractional exponent bases]
}
deriving (Data, Show)
-- The Show instance is required for the derived GHC.Parser.Lexer.Token instance when DEBUG is on