diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2021-02-20 10:35:08 -0500 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-03-14 12:55:07 -0400 |
commit | cd793767a1f388d10cda69f244479b63536f0a3d (patch) | |
tree | 1493e1dc971c7939c44ddaf51856ddf46fb5f374 /docs | |
parent | b73c9c5face16cc8bedf4168ce10770c7cc67f80 (diff) | |
download | haskell-cd793767a1f388d10cda69f244479b63536f0a3d.tar.gz |
Correct module name in `-fprof-callers` documentation
Diffstat (limited to 'docs')
-rw-r--r-- | docs/users_guide/profiling.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/users_guide/profiling.rst b/docs/users_guide/profiling.rst index 097d7d0de3..78f96ae8cb 100644 --- a/docs/users_guide/profiling.rst +++ b/docs/users_guide/profiling.rst @@ -369,7 +369,7 @@ compiled program. they appear in the source program (e.g. a call to ``f`` may inlined with its wrapper, resulting in an occurrence of its worker, ``$wf``). - In addition to plain module-qualified names (e.g. ``Data.List.map``), + In addition to plain module-qualified names (e.g. ``GHC.Base.map``), ⟨name⟩ also accepts a small globbing language using ``*`` as a wildcard symbol: |