summaryrefslogtreecommitdiff
path: root/libraries/base/Data/Function.hs
diff options
context:
space:
mode:
authorHerbert Valerio Riedel <hvr@gnu.org>2014-09-09 18:46:10 +0200
committerHerbert Valerio Riedel <hvr@gnu.org>2014-09-09 18:50:19 +0200
commit68ecc578c800aa2767dbf48863f4742859b1a8ec (patch)
tree3c8154e2b013fae9abc2ce9d026a87d4cd8899fb /libraries/base/Data/Function.hs
parentc6f502b211d03ff8408b17932a4435e4d5f6cd31 (diff)
downloadhaskell-68ecc578c800aa2767dbf48863f4742859b1a8ec.tar.gz
base: replace ver 4.7.1.0 references by 4.8.0.0
Since we now had to major bump due to AMP being landed, `base-4.7.1.0` is not gonna happen, as we're going straight for a `base-4.8.0.0` release. [skip ci] since this is a doc-only change
Diffstat (limited to 'libraries/base/Data/Function.hs')
-rw-r--r--libraries/base/Data/Function.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/base/Data/Function.hs b/libraries/base/Data/Function.hs
index afb6e5693a..a3fac7ca4d 100644
--- a/libraries/base/Data/Function.hs
+++ b/libraries/base/Data/Function.hs
@@ -94,6 +94,6 @@ on :: (b -> b -> c) -> (a -> b) -> a -> a -> c
-- convenience. Its precedence is one higher than that of the forward
-- application operator '$', which allows '&' to be nested in '$'.
--
--- /Since: 4.7.1.0/
+-- /Since: 4.8.0.0/
(&) :: a -> (a -> b) -> b
x & f = f x