Skip to content

Commit 1935935

Browse files
authored
Merge pull request #356 from iliekturtles/patch-1
Update 2018-12-21-Procedural-Macros-in-Rust-2018.md
2 parents bdd0a95 + ae68779 commit 1935935

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

posts/2018-12-21-Procedural-Macros-in-Rust-2018.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ three flavors:
3737
Each of these flavors of macros can be defined in a crate with `proc-macro =
3838
true` [specified in its manifest][manifest]. When used, a procedural macro is
3939
loaded by the Rust compiler and executed as the invocation is expanded. This
40-
means that Cargo's in control of versioning for procedural macros and you can
40+
means that Cargo is in control of versioning for procedural macros and you can
4141
use them with all same ease of use you'd expect from other Cargo dependencies!
4242

4343
### Defining a procedural macro
4444

4545
Each of the three types of procedural macros are [defined in a slightly different
46-
fashion][proc-ref], and here we'll single out attribute macros. First we'll flag
46+
fashion][proc-ref], and here we'll single out attribute macros. First, we'll flag
4747
`Cargo.toml`:
4848

4949
```toml

0 commit comments

Comments
 (0)