summaryrefslogtreecommitdiff
path: root/docs/users_guide
diff options
context:
space:
mode:
authorMatthew Pickering <matthewtpickering@gmail.com>2022-02-02 14:53:34 +0000
committerMarge Bot <ben+marge-bot@smart-cactus.org>2022-02-03 14:44:53 -0500
commit84ab0153a3527e7bd8b627ca559d782064af3c80 (patch)
treeeb9f6b78e76175ce8d6e5d8c28387b5aa1f00810 /docs/users_guide
parentaa5ef3402579da5523ee3d1fef7f26737b8d71fc (diff)
downloadhaskell-84ab0153a3527e7bd8b627ca559d782064af3c80.tar.gz
Rewrite CallerCC parser using ReadP
This allows us to remove the dependency on parsec and hence transitively on text. Also added some simple unit tests for the parser and fixed two small issues in the documentation. Fixes #21033
Diffstat (limited to 'docs/users_guide')
-rw-r--r--docs/users_guide/profiling.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/users_guide/profiling.rst b/docs/users_guide/profiling.rst
index 0aa437a4dc..a1b1de819f 100644
--- a/docs/users_guide/profiling.rst
+++ b/docs/users_guide/profiling.rst
@@ -386,9 +386,9 @@ compiled program.
* ``Data.List.map``
* ``*.map``
* ``*.parse*``
- * ``*.<\\*>``
+ * ``*.<\*>``
- The ``*`` character can be used literally by escaping (e.g. ``\\*``).
+ The ``*`` character can be used literally by escaping (e.g. ``\*``).
.. ghc-flag:: -fprof-auto
:shortdesc: Auto-add ``SCC``\\ s to all bindings not marked INLINE