You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -54,7 +54,7 @@ log messages above a certain level.
54
54
55
55
## &String vs &str
56
56
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)
58
58
In general, if you want to pass a reference to a string, use `&str` instead of `&String`.
59
59
60
60
## Use current versions of dependencies
@@ -74,13 +74,13 @@ but in most cases you shouldn't do that.
74
74
75
75
## If you need to escape characters in a string, use raw strings
76
76
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)
0 commit comments