1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: Carsten Schoenert <c.schoenert@t-online.de>
Date: Sat, 24 Jan 2026 09:22:07 +0200
Subject: p/profiler.py: Fix small type
---
pyinstrument/profiler.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pyinstrument/profiler.py b/pyinstrument/profiler.py
index 161c2bb..c0ef12f 100644
--- a/pyinstrument/profiler.py
+++ b/pyinstrument/profiler.py
@@ -103,7 +103,7 @@ class Profiler:
``strict``
Instructs the profiler to only profile the current
`async context <https://docs.python.org/3/library/contextvars.html>`_.
- Frames that are observed in an other context are ignored, tracked
+ Frames that are observed in another context are ignored, tracked
instead as ``<out-of-context>``.
"""
return self._async_mode
|