Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make a portion of text less ambiguous #2092

Merged
merged 4 commits into from
Oct 14, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update ch07-05-separating-modules-into-different-files.md
  • Loading branch information
Aleru authored Sep 13, 2019
commit c2cffb139818992fbe0c11d22cce511de3c20da6
2 changes: 1 addition & 1 deletion src/ch07-05-separating-modules-into-different-files.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ that module.

## Summary

Rust lets you divide a package into multiple crates and a crate into modules
Rust lets you partition a package into multiple crates and a crate into modules
so you can refer to items defined in one module from another module. You can do
this by specifying absolute or relative paths. These paths can be brought into
scope with a `use` statement so you can use a shorter path for multiple uses of
Expand Down