Skip to content

Commit

Permalink
Merge pull request #1161 from ehuss/fix-broken-links
Browse files Browse the repository at this point in the history
Fix some broken links.
  • Loading branch information
marioidival authored Mar 12, 2019
2 parents c7be826 + fbfef92 commit f68ef3d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/conversion/string.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,6 @@ fn main() {

[`ToString`]: https://doc.rust-lang.org/std/string/trait.ToString.html
[Display]: https://doc.rust-lang.org/std/fmt/trait.Display.html
[print]: /hello/print.html
[print]: hello/print.html
[`parse`]: https://doc.rust-lang.org/std/primitive.str.html#method.parse
[`FromStr`]: https://doc.rust-lang.org/std/str/trait.FromStr.html
4 changes: 2 additions & 2 deletions src/hello/print.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ fn main() {
// used.
println!("My name is {0}, {1} {0}", "Bond");
// FIXME ^ Add the missing argument: "James"
// Create a structure which contains an `i32`. Name it `Structure`.
#[allow(dead_code)]
struct Structure(i32);
Expand Down Expand Up @@ -91,4 +91,4 @@ and [`traits`][traits]
[structs]: custom_types/structs.html
[traits]: trait.html
[`ToString`]: https://doc.rust-lang.org/std/string/trait.ToString.html
[convert]: /conversion/string.html
[convert]: conversion/string.html

0 comments on commit f68ef3d

Please sign in to comment.