[commit: ghc] master: Update the incorrect comment on when function was introduced. (e09be5f)

git at git.haskell.org git at git.haskell.org
Mon Jun 16 22:59:28 UTC 2014


Repository : ssh://git@git.haskell.org/ghc

On branch  : master
Link       : http://ghc.haskell.org/trac/ghc/changeset/e09be5ff6e92593ba8e1202b1574a62a17b329ba/ghc

>---------------------------------------------------------------

commit e09be5ff6e92593ba8e1202b1574a62a17b329ba
Author: Iavor S. Diatchki <diatchki at galois.com>
Date:   Mon Jun 16 15:56:19 2014 -0700

    Update the incorrect comment on when function was introduced.


>---------------------------------------------------------------

e09be5ff6e92593ba8e1202b1574a62a17b329ba
 libraries/base/GHC/TypeLits.hs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libraries/base/GHC/TypeLits.hs b/libraries/base/GHC/TypeLits.hs
index cc76bc9..7ae6fb0 100644
--- a/libraries/base/GHC/TypeLits.hs
+++ b/libraries/base/GHC/TypeLits.hs
@@ -81,12 +81,12 @@ symbolVal :: forall n proxy. KnownSymbol n => proxy n -> String
 symbolVal _ = case symbolSing :: SSymbol n of
                 SSymbol x -> x
 
--- | /Since: 4.7.0.0/
+-- | /Since: 4.7.1.0/
 natVal' :: forall n. KnownNat n => Proxy# n -> Integer
 natVal' _ = case natSing :: SNat n of
              SNat x -> x
 
--- | /Since: 4.7.0.0/
+-- | /Since: 4.7.1.0/
 symbolVal' :: forall n. KnownSymbol n => Proxy# n -> String
 symbolVal' _ = case symbolSing :: SSymbol n of
                 SSymbol x -> x



More information about the ghc-commits mailing list