summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.all-contributorsrc18
-rw-r--r--AUTHORS.md4
-rw-r--r--exercises/clippy/clippy3.rs3
-rw-r--r--exercises/conversions/as_ref_mut.rs2
-rw-r--r--exercises/primitive_types/primitive_types1.rs3
-rw-r--r--exercises/primitive_types/primitive_types2.rs3
6 files changed, 24 insertions, 9 deletions
diff --git a/.all-contributorsrc b/.all-contributorsrc
index 55bd126..92bf2a0 100644
--- a/.all-contributorsrc
+++ b/.all-contributorsrc
@@ -2406,6 +2406,24 @@
"contributions": [
"infra"
]
+ },
+ {
+ "login": "krmpotic",
+ "name": "Luka Krmpotić",
+ "avatar_url": "https://avatars.githubusercontent.com/u/10350645?v=4",
+ "profile": "https://github.com/krmpotic",
+ "contributions": [
+ "content"
+ ]
+ },
+ {
+ "login": "jurglic",
+ "name": "Jurglic",
+ "avatar_url": "https://avatars.githubusercontent.com/u/112600?v=4",
+ "profile": "https://github.com/jurglic",
+ "contributions": [
+ "content"
+ ]
}
],
"contributorsPerLine": 8,
diff --git a/AUTHORS.md b/AUTHORS.md
index 2afa56a..fb249ac 100644
--- a/AUTHORS.md
+++ b/AUTHORS.md
@@ -340,6 +340,10 @@ authors.
<td align="center" valign="top" width="12.5%"><a href="https://github.com/husjon"><img src="https://avatars.githubusercontent.com/u/554229?v=4?s=100" width="100px;" alt="Jon Erling Hustadnes"/><br /><sub><b>Jon Erling Hustadnes</b></sub></a><br /><a href="#content-husjon" title="Content">🖋</a></td>
<td align="center" valign="top" width="12.5%"><a href="https://github.com/CobaltCause"><img src="https://avatars.githubusercontent.com/u/7003738?v=4?s=100" width="100px;" alt="Charles Hall"/><br /><sub><b>Charles Hall</b></sub></a><br /><a href="#infra-CobaltCause" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a></td>
</tr>
+ <tr>
+ <td align="center" valign="top" width="12.5%"><a href="https://github.com/krmpotic"><img src="https://avatars.githubusercontent.com/u/10350645?v=4?s=100" width="100px;" alt="Luka Krmpotić"/><br /><sub><b>Luka Krmpotić</b></sub></a><br /><a href="#content-krmpotic" title="Content">🖋</a></td>
+ <td align="center" valign="top" width="12.5%"><a href="https://github.com/jurglic"><img src="https://avatars.githubusercontent.com/u/112600?v=4?s=100" width="100px;" alt="Jurglic"/><br /><sub><b>Jurglic</b></sub></a><br /><a href="#content-jurglic" title="Content">🖋</a></td>
+ </tr>
</tbody>
</table>
diff --git a/exercises/clippy/clippy3.rs b/exercises/clippy/clippy3.rs
index 35021f8..5a95f5b 100644
--- a/exercises/clippy/clippy3.rs
+++ b/exercises/clippy/clippy3.rs
@@ -1,8 +1,7 @@
// clippy3.rs
//
// Here's a couple more easy Clippy fixes, so you can see its utility.
-//
-// Execute `rustlings hint clippy3` or use the `hint` watch subcommand for a hint.
+// No hints.
// I AM NOT DONE
diff --git a/exercises/conversions/as_ref_mut.rs b/exercises/conversions/as_ref_mut.rs
index 626a36c..2ba9e3f 100644
--- a/exercises/conversions/as_ref_mut.rs
+++ b/exercises/conversions/as_ref_mut.rs
@@ -57,7 +57,7 @@ mod tests {
}
#[test]
- fn mult_box() {
+ fn mut_box() {
let mut num: Box<u32> = Box::new(3);
num_sq(&mut num);
assert_eq!(*num, 9);
diff --git a/exercises/primitive_types/primitive_types1.rs b/exercises/primitive_types/primitive_types1.rs
index e1cf52a..3663340 100644
--- a/exercises/primitive_types/primitive_types1.rs
+++ b/exercises/primitive_types/primitive_types1.rs
@@ -2,9 +2,6 @@
//
// Fill in the rest of the line that has code missing! No hints, there's no
// tricks, just get used to typing these :)
-//
-// Execute `rustlings hint primitive_types1` or use the `hint` watch subcommand
-// for a hint.
// I AM NOT DONE
diff --git a/exercises/primitive_types/primitive_types2.rs b/exercises/primitive_types/primitive_types2.rs
index fcc9705..f1616ed 100644
--- a/exercises/primitive_types/primitive_types2.rs
+++ b/exercises/primitive_types/primitive_types2.rs
@@ -2,9 +2,6 @@
//
// Fill in the rest of the line that has code missing! No hints, there's no
// tricks, just get used to typing these :)
-//
-// Execute `rustlings hint primitive_types2` or use the `hint` watch subcommand
-// for a hint.
// I AM NOT DONE