From bc6999982f16773c3778330337bfcf74afda698f Mon Sep 17 00:00:00 2001 From: messense Date: Wed, 5 Feb 2025 20:42:52 +0800 Subject: [PATCH] Fix codespell check --- guide/src/import_hook.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/src/import_hook.md b/guide/src/import_hook.md index c0428d12a..6da4a0e75 100644 --- a/guide/src/import_hook.md +++ b/guide/src/import_hook.md @@ -229,7 +229,7 @@ side-effects with imports (e.g. the project importer). 1. Searches `sys.path` for an `.rs` file matching the import (e.g. for `import foo.bar`, the hook will look for `foo/bar.rs` at each search path). -2. Creates a temporary Maturin project for the `.rs` file or re-uses the project if it already exists. +2. Creates a temporary Maturin project for the `.rs` file or reuses the project if it already exists. 3. Rebuilds the project if necessary. The above steps are a simplification as supporting `importlib.reload()` requires more complex logic.