From 22658698d87933f5aba923020989e8d3402d7d86 Mon Sep 17 00:00:00 2001 From: James McKinney <26463+jpmckinney@users.noreply.github.com> Date: Sat, 28 Sep 2024 01:49:56 -0400 Subject: [PATCH] python/performance: Fix directive name --- docs/python/performance.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/python/performance.rst b/docs/python/performance.rst index 2b8f367..937b8be 100644 --- a/docs/python/performance.rst +++ b/docs/python/performance.rst @@ -47,7 +47,7 @@ CPU - `vmprof `__ is a statistic profiler, measures functions or lines, and supports threads and PyPy (and is aware of JIT). - `timeit `__ is a deterministic profiler for code snippets. -.. admonitions:: Other profilers +.. admonition:: Other profilers - `yappi `__ is a deterministic profiler, measures functions, supports threads and async, and has wall and CPU clocks. - `pyinstrument `__ is a `statistical profiler `__, measures functions, and `supports async `__ but `not threads `__.