diff options
Diffstat (limited to 'docs/users_guide/exts/hiding_unexported.rst')
-rw-r--r-- | docs/users_guide/exts/hiding_unexported.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/users_guide/exts/hiding_unexported.rst b/docs/users_guide/exts/hiding_unexported.rst index 8e295ca7eb..811a866513 100644 --- a/docs/users_guide/exts/hiding_unexported.rst +++ b/docs/users_guide/exts/hiding_unexported.rst @@ -12,7 +12,7 @@ Technically in Haskell 2010 this is illegal: :: The ``import A hiding( g )`` in module ``B`` is technically an error (`Haskell Report, -5.3.1 <http://www.haskell.org/onlinereport/haskell2010/haskellch5.html#x11-1020005.3.1>`__) +5.3.1 <https://www.haskell.org/onlinereport/haskell2010/haskellch5.html#x11-1020005.3.1>`__) because ``A`` does not export ``g``. However GHC allows it, in the interests of supporting backward compatibility; for example, a newer version of ``A`` might export ``g``, and you want ``B`` to work in |