summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorliv <mokou@fastmail.com>2022-12-28 10:59:02 +0100
committerGitHub <noreply@github.com>2022-12-28 10:59:02 +0100
commitf9f07bee098ffd0b4170b1915ccc109243875568 (patch)
treeaa89c0dccce9d10de082068a265182ec30179777
parent32b234c9f0de2f63f905d461639d9f7ed94776bc (diff)
parent430371795133488f9daa1b7d390997fb3d3a7e7b (diff)
Merge pull request #1304 from generalmimon/hints-rust-capitalize
chore: "rust" -> "Rust" in exercise hints
-rw-r--r--info.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/info.toml b/info.toml
index 4b87819..8356f6a 100644
--- a/info.toml
+++ b/info.toml
@@ -665,7 +665,7 @@ name = "generics1"
path = "exercises/generics/generics1.rs"
mode = "compile"
hint = """
-Vectors in rust make use of generics to create dynamically sized arrays of any type.
+Vectors in Rust make use of generics to create dynamically sized arrays of any type.
You need to tell the compiler what type we are pushing onto this vector."""
[[exercises]]
@@ -1071,7 +1071,7 @@ path = "exercises/clippy/clippy1.rs"
mode = "clippy"
hint = """
Rust stores the highest precision version of any long or inifinite precision
-mathematical constants in the rust standard library.
+mathematical constants in the Rust standard library.
https://doc.rust-lang.org/stable/std/f32/consts/index.html
We may be tempted to use our own approximations for certain mathematical constants,