Skip to content

Commit cb97754

Browse files
committed
Address review comments.
1 parent 42e047a commit cb97754

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

src/crates-and-source-files.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ extension `.rs`.
4242

4343
A Rust source file describes a module, the name and location of which —
4444
in the module tree of the current crate — are defined from outside the
45-
source file: either by an explicit [`mod` item][module] in a referencing source file, or
46-
by the name of the crate itself. Every source file is a module, but not every
47-
module needs its own source file: [module definitions][module] can be nested
48-
within one file.
45+
source file: either by an explicit [`mod` item][module] in a referencing
46+
source file, or by the name of the crate itself. Every source file is a
47+
module, but not every module needs its own source file: [module
48+
definitions][module] can be nested within one file.
4949

5050
Each source file contains a sequence of zero or more `item` definitions, and
5151
may optionally begin with any number of [attributes]

src/items/modules.md

-2
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,6 @@ mod thread {
120120
}
121121
```
122122

123-
124-
125123
## Prelude Items
126124

127125
Modules implicitly have some names in scope. These name are to built-in types,

0 commit comments

Comments
 (0)