Skip to content

Commit f6377c0

Browse files
author
yourname
committed
fix(modules2): fix typo (rust-lang#835)
1 parent d3df9dd commit f6377c0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exercises/modules/modules2.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
// modules2.rs
22
// You can bring module paths into scopes and provide new names for them with the
3-
// 'use' and 'as' keywords. Fix these 'use' statments to make the code compile.
3+
// 'use' and 'as' keywords. Fix these 'use' statements to make the code compile.
44
// Make me compile! Execute `rustlings hint modules2` for hints :)
55

66
// I AM NOT DONE
77

88
mod delicious_snacks {
99

10-
// TODO: Fix these use statments
10+
// TODO: Fix these use statements
1111
use self::fruits::PEAR as ???
1212
use self::veggies::CUCUMBER as ???
1313

0 commit comments

Comments
 (0)