diff options
author | Takenobu Tani <takenobu.hs@gmail.com> | 2022-03-15 19:44:29 +0900 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-03-28 01:16:02 -0400 |
commit | 25101813905a78010e25ecc3a5f392e2403ae487 (patch) | |
tree | 0228b9ab0279728516a0c726c8152f1463c8f551 | |
parent | 940feaf3c2334d6eb8b66bd9d3edd560f789c94f (diff) | |
download | haskell-25101813905a78010e25ecc3a5f392e2403ae487.tar.gz |
users-guide: Correct markdown for profiling
This patch corrects some markdown.
[skip ci]
-rw-r--r-- | docs/users_guide/profiling.rst | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/docs/users_guide/profiling.rst b/docs/users_guide/profiling.rst index b9b5d371f9..22ca43466c 100644 --- a/docs/users_guide/profiling.rst +++ b/docs/users_guide/profiling.rst @@ -1788,6 +1788,7 @@ ticky counters and the quality of the profile. :category: These dummy counters contain: + * The number of avoided tag checks in the entry count. * "infer" as the argument string to distinguish them from regular counters. * The name of the variable we are casing on, as well as a unique to represent the inspection site as one variable might be cased on multiple times. @@ -1854,11 +1855,11 @@ Name-specific counters provide the following information about a closure. The FVs and Args information is encoded using a small DSL. +------------------+---------------------------------------------------+ -|Classification |Description | +|Classification |Description | +==================+===================================================+ -|+ |dictionary | +|\+ |dictionary | +------------------+---------------------------------------------------+ -|\> |function | +|\> |function | +------------------+---------------------------------------------------+ |{C,I,F,D,W} | char, int, float, double, word | +------------------+---------------------------------------------------+ @@ -1878,9 +1879,9 @@ The FVs and Args information is encoded using a small DSL. +------------------+---------------------------------------------------+ |M | Multi constructor type | +------------------+---------------------------------------------------+ -|. |other type | +|. |other type | +------------------+---------------------------------------------------+ -|- |reserved for others to mark as "uninteresting" | +|\- |reserved for others to mark as "uninteresting" | +------------------+---------------------------------------------------+ In particular note that you can use the ticky profiler to see any function |