summaryrefslogtreecommitdiff
path: root/docs/users_guide/exts/type_applications.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/users_guide/exts/type_applications.rst')
-rw-r--r--docs/users_guide/exts/type_applications.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/users_guide/exts/type_applications.rst b/docs/users_guide/exts/type_applications.rst
index 2e789c99e3..2a735436d8 100644
--- a/docs/users_guide/exts/type_applications.rst
+++ b/docs/users_guide/exts/type_applications.rst
@@ -73,9 +73,9 @@ Because ``k`` was not written by the user, it will be unavailable for
type application in the type of the constructor ``Proxy``; only the ``a``
will be available.
-When :ghc-flag:`-fprint-explicit-foralls` is enabled, inferred variables
-are printed in braces. Thus, the type of the data constructor ``Proxy``
-from the previous example would be ``forall {k} (a :: k). Proxy a``.
+Inferred variables are printed in braces. Thus, the type of the data
+constructor ``Proxy`` from the previous example is
+``forall {k} (a :: k). Proxy a``.
We can observe this behavior in a GHCi session: ::
> :set -XTypeApplications -fprint-explicit-foralls