diff --git a/guide/src/rust-from-python.md b/guide/src/rust-from-python.md index cbf846981ed..3b525d399df 100644 --- a/guide/src/rust-from-python.md +++ b/guide/src/rust-from-python.md @@ -8,6 +8,6 @@ PyO3 can create three types of Python objects: - Python modules, via the `#[pymodule]` macro - Python functions, via the `#[pyfunction]` macro -- Python classes, via the `#[pyclass]` macro (plus `#[pymethods]` to define methods for those clases) +- Python classes, via the `#[pyclass]` macro (plus `#[pymethods]` to define methods for those classes) The following subchapters go through each of these in turn.