From 4cf002507ca3053b07dee6716d4ec9e127b5e6e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niko=20F=C3=B6hr?= Date: Tue, 23 Jan 2024 14:58:24 +0000 Subject: [PATCH] Fix typo + add a link in docs (User Profiling) (#6263) --- doc/how_to/profiling/profile.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/how_to/profiling/profile.md b/doc/how_to/profiling/profile.md index 7897e4d1b6..9ef2919913 100644 --- a/doc/how_to/profiling/profile.md +++ b/doc/how_to/profiling/profile.md @@ -21,7 +21,7 @@ Once enabled the launch profiler will profile each application separately and pr ## User profiling -In addition to profiling the launch step of an application it is often also important to get insight into the interactive performance of an application. For that reason Panel also provides the `pn.io.profile` decorator that can be added to any callback and will report the profiling results in the `/admin` panel. The `profile` helper takes to arguments, the name to record the profiling results under and the profiling `engine` to use. +In addition to profiling the launch step of an application it is often also important to get insight into the interactive performance of an application. For that reason Panel also provides the `pn.io.profile` decorator that can be added to any callback and will report the profiling results in the [`/admin` panel](../profiling/admin.html). The `profile` helper takes two arguments, the name to record the profiling results under and the profiling `engine` to use. ```python @pn.io.profile('clustering', engine='snakeviz')