Skip to content

Commit 8262649

Browse files
authored
Fix links
1 parent 47d1995 commit 8262649

File tree

1 file changed

+5
-5
lines changed
  • content/lessons/12_project_feedback

1 file changed

+5
-5
lines changed

content/lessons/12_project_feedback/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ fn main() {
4444
## Question mark operator
4545

4646
In methods that return `Result` or `Option`, you can use the question mark operator to return early if the value is `None` or `Err`.
47-
See: https://doc.rust-lang.org/rust-by-example/std/result/question_mark.html
47+
See: [https://doc.rust-lang.org/rust-by-example/std/result/question_mark.html](https://doc.rust-lang.org/rust-by-example/std/result/question_mark.html)
4848

4949
## Logging
5050

@@ -54,7 +54,7 @@ log messages above a certain level.
5454

5555
## &String vs &str
5656

57-
See https://doc.rust-lang.org/book/ch04-03-slices.html#string-slices-as-parameters
57+
See [https://doc.rust-lang.org/book/ch04-03-slices.html#string-slices-as-parameters](https://doc.rust-lang.org/book/ch04-03-slices.html#string-slices-as-parameters)
5858
In general, if you want to pass a reference to a string, use `&str` instead of `&String`.
5959

6060
## Use current versions of dependencies
@@ -74,13 +74,13 @@ but in most cases you shouldn't do that.
7474

7575
## If you need to escape characters in a string, use raw strings
7676

77-
See https://doc.rust-lang.org/reference/tokens.html#raw-string-literals
77+
See [https://doc.rust-lang.org/reference/tokens.html#raw-string-literals](https://doc.rust-lang.org/reference/tokens.html#raw-string-literals)
7878

7979
## How to handle errors?
8080

81-
Short: https://kerkour.com/rust-error-handling
81+
Short: [https://kerkour.com/rust-error-handling](https://kerkour.com/rust-error-handling)
8282

83-
Long: https://www.lpalmieri.com/posts/error-handling-rust/
83+
Long: [https://www.lpalmieri.com/posts/error-handling-rust/](https://www.lpalmieri.com/posts/error-handling-rust/)
8484

8585
## Don't pass around locked mutex's contents
8686

0 commit comments

Comments
 (0)