Skip to content
Snippets Groups Projects
Commit 5bfd28f5 authored by Oleg Grenrus's avatar Oleg Grenrus Committed by Marge Bot
Browse files

Fix some warnings in users_guide (incl #16640)

- short underline
- :ghc-flag:, not :ghc-flags:
- :since: have to be separate
- newline before code block
- workaround anchor generation so

    - pragma:SPECIALISE
    - pragma:SPECIALIZE-INLINE
    - pragma:SPECIALIZE-inline

  are different anchors, not all the same `pragma:SPECIALIZE`
parent b58b389b
No related branches found
No related tags found
No related merge requests found
.. _release-8-10-1:
Release notes for version 8.10.1
===============================
================================
The significant changes to the various parts of the compiler are listed in the
following sections.
......@@ -116,7 +116,7 @@ Template Haskell
- The ``Lift`` typeclass is now levity-polymorphic and has a ``liftTyped``
method. Previously disallowed instances for unboxed tuples, unboxed sums, an
primitive unboxed types have also been added. Finally, the code generated by
:ghc-flags:`-XDeriveLift` has been simplified to take advantage of expression
:ghc-flag:`-XDeriveLift` has been simplified to take advantage of expression
quotations.
``ghc-prim`` library
......
......@@ -147,7 +147,14 @@ def parse_ghci_cmd(env, sig, signode):
return name
def parse_pragma(env, sig, signode):
idx = sig.split(' ')[0]
parts = sig.split(' ')
idx = parts[0]
# To avoid re-using the same HTTP anchor #pragma-SPECIALIZE in multiple
# places, we disambiguate the anchor by adding the second word after it (if
# one exists).
if idx == "SPECIALIZE" and 1 in parts and parts[1].isalpha():
idx += "-" + parts[1]
name = '{-# ' + sig + ' #-}'
signode += addnodes.desc_name(name, name)
return idx
......
......@@ -10433,6 +10433,7 @@ function that can *never* be called, such as this one: ::
 
Sometimes :extension:`AllowAmbiguousTypes` does not mix well with :extension:`RankNTypes`.
For example: ::
foo :: forall r. (forall i. (KnownNat i) => r) -> r
foo f = f @1
 
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment