From d1885f791b7b3237ff5a93d084f3bd79e9d2928c Mon Sep 17 00:00:00 2001 From: Brogolem35 Date: Sat, 21 Sep 2024 15:28:07 +0300 Subject: [PATCH] Fix typo --- guide/src/rust-from-python.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.