diff options
author | taylorfausak <taylor@fausak.me> | 2021-03-03 13:07:41 -0500 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-09-28 09:57:37 -0400 |
commit | 62b4a89b6ec9d424231f7c68180363a86ac44344 (patch) | |
tree | c87a8651ab152815113d8c9b8574cd7d17e5f8c3 | |
parent | 26f24aeca7784f9f9a2a49bce42eaeb60b94d39f (diff) | |
download | haskell-62b4a89b6ec9d424231f7c68180363a86ac44344.tar.gz |
Remove outdated note about pragma layout
-rw-r--r-- | docs/users_guide/exts/pragmas.rst | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/docs/users_guide/exts/pragmas.rst b/docs/users_guide/exts/pragmas.rst index 3424c3f30d..f533dd834e 100644 --- a/docs/users_guide/exts/pragmas.rst +++ b/docs/users_guide/exts/pragmas.rst @@ -14,9 +14,7 @@ Pragmas all take the form ``{-# word ... #-}`` where ⟨word⟩ indicates the type of pragma, and is followed optionally by information specific to that type of pragma. Case is ignored in ⟨word⟩. The various values for ⟨word⟩ that GHC understands are described in the following sections; -any pragma encountered with an unrecognised ⟨word⟩ is ignored. The -layout rule applies in pragmas, so the closing ``#-}`` should start in a -column to the right of the opening ``{-#``. +any pragma encountered with an unrecognised ⟨word⟩ is ignored. Certain pragmas are *file-header pragmas*: |