summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorchris-bacon <chrisbacon2009@hotmail.com>2018-08-27 13:45:47 +0100
committerÖmer Sinan Ağacan <omeragacan@gmail.com>2018-08-29 12:32:58 +0300
commit36c1431d9d2d06049190cc0888dbfaee8e2179d6 (patch)
tree237cf3daba3933c068cea8dd8f584fc2e3b9ae2d
parent102284e72f8d29599803aa72ccec180db28e72c8 (diff)
downloadhaskell-36c1431d9d2d06049190cc0888dbfaee8e2179d6.tar.gz
Fixed typo in exponent example
-rw-r--r--libraries/base/GHC/Natural.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/base/GHC/Natural.hs b/libraries/base/GHC/Natural.hs
index 0408ce6423..71511d37b3 100644
--- a/libraries/base/GHC/Natural.hs
+++ b/libraries/base/GHC/Natural.hs
@@ -124,7 +124,7 @@ divZeroError = raise# divZeroException
-- | Type representing arbitrary-precision non-negative integers.
--
--- >>> 2^20 :: Natural
+-- >>> 2^100 :: Natural
-- 1267650600228229401496703205376
--
-- Operations whose result would be negative @'Control.Exception.throw'