Skip to content

Commit

Permalink
reexport to re-export
Browse files Browse the repository at this point in the history
  • Loading branch information
carols10cents committed Jun 27, 2019
1 parent cc6a1ef commit 7ddc464
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ch19-06-macros.md
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ definition in `hello_macro`, we’ll have to change the implementation of the
procedural macro in `hello_macro_derive` as well. The two crates will need to
be published separately, and programmers using these crates will need to add
both as dependencies and bring them both into scope. We could instead have the
`hello_macro` crate use `hello_macro_derive` as a dependency and reexport the
`hello_macro` crate use `hello_macro_derive` as a dependency and re-export the
procedural macro code. However, the way we’ve structured the project makes it
possible for programmers to use `hello_macro` even if they don’t want the
`derive` functionality.
Expand Down

0 comments on commit 7ddc464

Please sign in to comment.