Skip to content

Commit dbb2624

Browse files
authored
Merge pull request #751 from juanprq/main
fix: remove trailing whitespace
2 parents 7cd635f + 4d4fa77 commit dbb2624

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

exercises/generics/generics1.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
// This shopping list program isn't compiling!
22
// Use your knowledge of generics to fix it.
33

4+
// Execute `rustlings hint generics1` for hints!
5+
46
// I AM NOT DONE
57

68
fn main() {

exercises/generics/generics2.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
// This powerful wrapper provides the ability to store a positive integer value.
22
// Rewrite it using generics so that it supports wrapping ANY type.
33

4+
// Execute `rustlings hint generics2` for hints!
5+
46
// I AM NOT DONE
57

68
struct Wrapper {

exercises/standard_library_types/iterators1.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
// iterators1.rs
2-
//
2+
//
33
// Make me compile by filling in the `???`s
44
//
55
// When performing operations on elements within a collection, iterators are essential.
6-
// This module helps you get familiar with the structure of using an iterator and
6+
// This module helps you get familiar with the structure of using an iterator and
77
// how to go through elements within an iterable collection.
8-
//
8+
//
99
// Execute `rustlings hint iterators1` for hints :D
1010

1111
// I AM NOT DONE

exercises/structs/structs3.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ impl Package {
3131
}
3232

3333
fn get_fees(&self, cents_per_gram: i32) -> ??? {
34-
// Something goes here...
34+
// Something goes here...
3535
}
3636
}
3737

0 commit comments

Comments
 (0)