From 7af99a0d2aac4a6caca73d7470c94881651457a2 Mon Sep 17 00:00:00 2001 From: Diego Diverio <diego.diverio@channable.com> Date: Sat, 10 Jun 2023 15:59:45 +0200 Subject: [PATCH] Update documentation to actually display code correctly --- libraries/base/GHC/Base.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/base/GHC/Base.hs b/libraries/base/GHC/Base.hs index 626b17f9ea51..d2f1cf4728a0 100644 --- a/libraries/base/GHC/Base.hs +++ b/libraries/base/GHC/Base.hs @@ -807,7 +807,7 @@ class Functor f => Applicative f where (<*) = liftA2 const -- | A variant of '<*>' with the types of the arguments reversed. It differs from --- `flip <*>` in that the effects are resolved in the order the arguments are +-- @`flip` `(<*>)`@ in that the effects are resolved in the order the arguments are -- presented. -- -- ==== __Examples__ -- GitLab