[commit: ghc] master: users-guide: Fix up formatting in 8.6 release notes (f19b07a)

git at git.haskell.org git at git.haskell.org
Mon Apr 23 14:34:38 UTC 2018


Repository : ssh://git@git.haskell.org/ghc

On branch  : master
Link       : http://ghc.haskell.org/trac/ghc/changeset/f19b07af673ab96b3d373790bb3fdd6b4de96a01/ghc

>---------------------------------------------------------------

commit f19b07af673ab96b3d373790bb3fdd6b4de96a01
Author: Ben Gamari <ben at smart-cactus.org>
Date:   Sun Apr 22 18:32:53 2018 -0400

    users-guide: Fix up formatting in 8.6 release notes


>---------------------------------------------------------------

f19b07af673ab96b3d373790bb3fdd6b4de96a01
 docs/users_guide/8.6.1-notes.rst | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/docs/users_guide/8.6.1-notes.rst b/docs/users_guide/8.6.1-notes.rst
index 25a4ac3..fea86ae 100644
--- a/docs/users_guide/8.6.1-notes.rst
+++ b/docs/users_guide/8.6.1-notes.rst
@@ -118,7 +118,7 @@ Runtime system
 - The GHC runtime linker now uses ``LIBRARY_PATH`` and the runtime loader now also
   searches ``LD_LIBRARY_PATH``.
 
-- The GHC runtime on Windows is no longer constrained by MAX_PATH.
+- The GHC runtime on Windows is no longer constrained by ``MAX_PATH``.
 
 Template Haskell
 ~~~~~~~~~~~~~~~~
@@ -134,7 +134,7 @@ Template Haskell
 - ``($!)`` is now representation-polymorphic like ``($)``.
 
 - The module ``Data.Functor.Contravariant`` has been moved from the
-  ``contravariant`` package into base. All the other modules in
+  ``contravariant`` package into ``base``. All the other modules in
   ``contravariant`` (``Data.Functor.Contravariant.Divisible``, etc.)
   have not been moved to ``base``, and they still reside in ``contravariant``.
 
@@ -146,7 +146,7 @@ Windows Paths
 ~~~~~~~~~~~~~
 
 Windows paths are not all the same. The different kinds of paths each have
-different meanings. The MAX_PATH limitation is not a limitation of the Operating
+different meanings. The ``MAX_PATH`` limitation is not a limitation of the Operating
 System nor the File System. It is a limitation of the default namespace enforced
 by the Win32 API for backwards compatibility.
 
@@ -156,9 +156,9 @@ PATH.
 
 The namespaces are:
 
- - file namespace: \\?\
- - device namespace: \\.\
- - nt namespace: \
+ - file namespace: ``\\?\``
+ - device namespace: ``\\.\``
+ - nt namespace: ``\``
 
 Each of these turn off Path processing completely by the Win32 API and the paths
 are passed untouched to the filesystem.
@@ -172,7 +172,7 @@ The Haskell I/O manager will now automatically promote paths in the legacy
 format to Win32 file namespace. By default the I/O manager will do two things to
 your paths:
 
-  - replace / with \\
+  - replace ``/`` with ``\\``
   - expand relative paths to absolute paths
 
 If you want to opt out of all preprocessing just expliticly use namespaces in



More information about the ghc-commits mailing list