Skip to content

Commit

Permalink
Fix in trace and debug mode docs
Browse files Browse the repository at this point in the history
  • Loading branch information
steve-s committed Feb 1, 2023
1 parent 78e5586 commit 70a8a0a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/debug-mode.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Debug mode works *only* for extensions built with HPy universal ABI.
To enable debug mode, use environment variable ``HPY``. If ``HPY=debug``, then
all HPy modules are loaded with the trace context. Alternatively, it is also
possible to specify the mode per module like this:
``HPY=modA:debug,modB=debug``.
``HPY=modA:debug,modB:debug``.

In order to verify that your extension is being loaded in debug mode, use
environment variable ``HPY_LOG``. If this variable is set, then all HPy
Expand Down
2 changes: 1 addition & 1 deletion docs/quickstart.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
HPy Quickstart
=============
==============

This section shows how to quickly get started with HPy by creating
a simple HPy extension from scratch.
Expand Down
2 changes: 1 addition & 1 deletion docs/trace-mode.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Similar to how the
:ref:`debug mode is activated <debug-mode:Activating Debug Mode>`, use
environment variable ``HPY``. If ``HPY=trace``, then all HPy modules are loaded
with the trace context. Alternatively, it is also possible to specify the mode
per module like this: ``HPY=modA:trace,modB=trace``.
per module like this: ``HPY=modA:trace,modB:trace``.
Environment variable ``HPY_LOG`` also works.


Expand Down

0 comments on commit 70a8a0a

Please sign in to comment.