Skip to content

Commit e195c85

Browse files
authored
Fix some tiny typos in docs (#13939)
1 parent e33d25f commit e195c85

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/lightning_app/components/python/tracer.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ def __init__(
4545
"""The TracerPythonScript class enables to easily run a python script.
4646
4747
When subclassing this class, you can configure your own :class:`~lightning_app.utilities.tracer.Tracer`
48-
by :meth:`~lightning_app.components.python.tracer.TracerPythonScript.configure_tracer` method
48+
by :meth:`~lightning_app.components.python.tracer.TracerPythonScript.configure_tracer` method.
4949
50-
The tracer is quite a magical class. It enables you to inject core into a script execution without changing it.
50+
The tracer is quite a magical class. It enables you to inject code into a script execution without changing it.
5151
5252
Arguments:
5353
script_path: Path of the python script to run.
@@ -59,12 +59,12 @@ def __init__(
5959
Raises:
6060
FileNotFoundError: If the provided `script_path` doesn't exists.
6161
62-
**How does it works ?**
62+
**How does it work?**
6363
6464
It works by executing the python script with python built-in `runpy
6565
<https://docs.python.org/3/library/runpy.html>`_ run_path method.
6666
This method takes any python globals before executing the script,
67-
e.g you can modify classes or function from the script.
67+
e.g., you can modify classes or function from the script.
6868
6969
.. doctest::
7070

0 commit comments

Comments
 (0)