summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBasile Henry <bjm.henry@gmail.com>2021-02-05 03:13:02 -0500
committerMarge Bot <ben+marge-bot@smart-cactus.org>2021-02-05 19:15:06 -0500
commit640a3ece333d1b0d0af8f353c3e1df9dd0cb9ef3 (patch)
tree13947eb2944bf8033a35c55b157bd9b9c877748f
parenta9b89d5a7a3a7f5b0f0b819913273b767f831bf6 (diff)
downloadhaskell-640a3ece333d1b0d0af8f353c3e1df9dd0cb9ef3.tar.gz
Fix typo in qualified_do.rst
-rw-r--r--docs/users_guide/exts/qualified_do.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/users_guide/exts/qualified_do.rst b/docs/users_guide/exts/qualified_do.rst
index 90db9c8865..4a4eabc1b2 100644
--- a/docs/users_guide/exts/qualified_do.rst
+++ b/docs/users_guide/exts/qualified_do.rst
@@ -19,7 +19,7 @@ the monadic combinators that the ``do`` notation desugars to.
When ``-XQualifiedDo`` is enabled, you can *qualify* the ``do`` notation by writing ``modid.do``, where
``modid`` is a module name in scope: ::
- {-# LANGAUGE QualifiedDo #-}
+ {-# LANGUAGE QualifiedDo #-}
import qualified Some.Module.Monad as M
action :: M.SomeType a