Skip to content

Commit

Permalink
fix(modules2): fix typo (#835)
Browse files Browse the repository at this point in the history
  • Loading branch information
granddaifuku committed Sep 6, 2021
1 parent e4e9e4c commit 1c3beb0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exercises/modules/modules2.rs
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
// modules2.rs
// You can bring module paths into scopes and provide new names for them with the
// 'use' and 'as' keywords. Fix these 'use' statments to make the code compile.
// 'use' and 'as' keywords. Fix these 'use' statements to make the code compile.
// Make me compile! Execute `rustlings hint modules2` for hints :)

// I AM NOT DONE

mod delicious_snacks {

// TODO: Fix these use statments
// TODO: Fix these use statements
use self::fruits::PEAR as ???
use self::veggies::CUCUMBER as ???

Expand Down

0 comments on commit 1c3beb0

Please sign in to comment.