Skip to content

Commit f68ef3d

Browse files
authored
Merge pull request #1161 from ehuss/fix-broken-links
Fix some broken links.
2 parents c7be826 + fbfef92 commit f68ef3d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/conversion/string.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,6 @@ fn main() {
5050

5151
[`ToString`]: https://doc.rust-lang.org/std/string/trait.ToString.html
5252
[Display]: https://doc.rust-lang.org/std/fmt/trait.Display.html
53-
[print]: /hello/print.html
53+
[print]: hello/print.html
5454
[`parse`]: https://doc.rust-lang.org/std/primitive.str.html#method.parse
5555
[`FromStr`]: https://doc.rust-lang.org/std/str/trait.FromStr.html

src/hello/print.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ fn main() {
4545
// used.
4646
println!("My name is {0}, {1} {0}", "Bond");
4747
// FIXME ^ Add the missing argument: "James"
48-
48+
4949
// Create a structure which contains an `i32`. Name it `Structure`.
5050
#[allow(dead_code)]
5151
struct Structure(i32);
@@ -91,4 +91,4 @@ and [`traits`][traits]
9191
[structs]: custom_types/structs.html
9292
[traits]: trait.html
9393
[`ToString`]: https://doc.rust-lang.org/std/string/trait.ToString.html
94-
[convert]: /conversion/string.html
94+
[convert]: conversion/string.html

0 commit comments

Comments
 (0)