summaryrefslogtreecommitdiff
path: root/docs/users_guide/exts/binary_literals.rst
diff options
context:
space:
mode:
authorTrevis Elser <trevis@flipstone.com>2022-05-29 01:19:12 -0400
committerBen Gamari <ben@well-typed.com>2022-08-09 18:32:04 +0000
commitde0b4a7d752c6af009ac2a34a14ccef76cc65f4d (patch)
tree77acb8ab30f73953f43a36cca4da289b61cd8269 /docs/users_guide/exts/binary_literals.rst
parentd71a20514546e0befe6e238d0658cbaad5a13996 (diff)
downloadhaskell-wip/telser/docs-extension-status.tar.gz
Updates language extension documentationwip/telser/docs-extension-status
Adding a 'Status' field with a few values: - Deprecated - Experimental - InternalUseOnly - Noting if included in 'GHC2021', 'Haskell2010' or 'Haskell98' Those values are pulled from the existing descriptions or elsewhere in the documentation. While at it, include the :implied by: where appropriate, to provide more detail. Fixes #21475
Diffstat (limited to 'docs/users_guide/exts/binary_literals.rst')
-rw-r--r--docs/users_guide/exts/binary_literals.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/users_guide/exts/binary_literals.rst b/docs/users_guide/exts/binary_literals.rst
index d49c64ea84..29c5ad290f 100644
--- a/docs/users_guide/exts/binary_literals.rst
+++ b/docs/users_guide/exts/binary_literals.rst
@@ -8,6 +8,8 @@ Binary integer literals
:since: 7.10.1
+ :status: Included in :extension:`GHC2021`
+
Allow the use of binary notation in integer literals.
Haskell 2010 and Haskell 98 allows for integer literals to be given in
@@ -18,5 +20,3 @@ The language extension :extension:`BinaryLiterals` adds support for expressing
integer literals in binary notation with the prefix ``0b`` or ``0B``. For
instance, the binary integer literal ``0b11001001`` will be desugared into
``fromInteger 201`` when :extension:`BinaryLiterals` is enabled.
-
-