Skip to content

Commit 6ba9e2d

Browse files
committed
Typos
1 parent c3b6f92 commit 6ba9e2d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include-idl/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ use include_idl::{include_idl, parse::IdlType};
2222
include_idl!(IdlType::Codama, concat!(env!("OUT_DIR"), "/codama.idl.zip"));
2323
```
2424

25-
In general, the macro is used in combination with a `build.rs` build script to compress the IDL file, reducing the space required on program binary.
25+
In general, the macro is used in combination with a `build.rs` build script to compress the IDL file, reducing the space required on the program binary.
2626

27-
To specify a build script, add an `build = "build.rs"` entry on your `Cargo.toml` file under the `[package]` section. Below is a `build.rs` example file that compresses an existing IDL file.
27+
To specify a build script, add a `build = "build.rs"` entry to your `Cargo.toml` file under the `[package]` section. Below is a `build.rs` example file that compresses an existing IDL file.
2828

2929
```rust
3030
use std::env;

0 commit comments

Comments
 (0)