Skip to content

Commit

Permalink
Fix small typos in docs (#439)
Browse files Browse the repository at this point in the history
  • Loading branch information
dawiddzhafarov authored Aug 28, 2023
1 parent b1f7a91 commit 8a5d575
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/examples/basics.rst
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ is common for pandas objects:
Timestamp('2021-06-20 00:00:00')

You can also load an event directly, by using the function
:func:`fastf1.get_session`. The :class:`~fastf1.events.Event` object in turn
:func:`fastf1.get_event`. The :class:`~fastf1.events.Event` object in turn
provides methods for accessing the individual associated sessions.

.. doctest::
Expand Down
2 changes: 1 addition & 1 deletion fastf1/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
Usually you will be using :func:`fastf1.get_session` to get a :class:`Session`
object.
The :class:`Laps` object holds detailed information about multiples laps.
The :class:`Laps` object holds detailed information about multiple laps.
The :class:`Lap` object holds the same information as :class:`Laps` but only
for one single lap. When selecting a single lap from a :class:`Laps` object,
Expand Down
2 changes: 1 addition & 1 deletion fastf1/events.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ def get_session(
>>> get_session(2020, 'Austria', 'Qualifying')
Get the 3rd session if the 5th Grand Prix in 2021::
Get the 3rd session of the 5th Grand Prix in 2021::
>>> get_session(2021, 5, 3)
Expand Down

0 comments on commit 8a5d575

Please sign in to comment.