From bca704ed99b73836917867ba2fe33e141c3fffd5 Mon Sep 17 00:00:00 2001 From: Christoph Herzog Date: Thu, 9 Sep 2021 11:50:17 +0000 Subject: [PATCH] Examples Wording Issue - relative <=> relevant Just a simple drive-by fix for the wording in the freeze example --- examples/freeze/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/freeze/main.rs b/examples/freeze/main.rs index c3f5e5f16..5de2844fc 100644 --- a/examples/freeze/main.rs +++ b/examples/freeze/main.rs @@ -7,7 +7,7 @@ fn main() -> vm::PyResult<()> { fn run(vm: &vm::VirtualMachine) -> vm::PyResult<()> { let scope = vm.new_scope_with_builtins(); - // the file parameter is relevant to the directory where the crate's Cargo.toml is located, see $CARGO_MANIFEST_DIR: + // the file parameter is relative to the directory where the crate's Cargo.toml is located, see $CARGO_MANIFEST_DIR: // https://doc.rust-lang.org/cargo/reference/environment-variables.html#environment-variables-cargo-sets-for-crates let module = vm::py_compile!(file = "examples/freeze/freeze.py");