From ab803966fedb640fedc95e22259e09b2922b22a0 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Fri, 17 Jul 2026 04:12:23 +0800 Subject: docs(picker): replace doc comment with `include_str!` reference --- mingling_pathf/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'mingling_pathf') diff --git a/mingling_pathf/README.md b/mingling_pathf/README.md index 6d8857a..89d1811 100644 --- a/mingling_pathf/README.md +++ b/mingling_pathf/README.md @@ -18,16 +18,16 @@ Enable the `pathf` feature in `Cargo.toml`: ```toml [dependencies.mingling] # Used to modify the generation behavior of `gen_program!` -features = ["pathf"] +features = ["pathf"] [build-dependencies.mingling] # Provides the `analyze_and_build_type_mapping` function -features = ["builds", "pathf"] +features = ["builds", "pathf"] ``` Create a `build.rs` in the project root: -```rust +```rust,ignore fn main() { mingling::build::analyze_and_build_type_mapping(); } -- cgit