Skip to content

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎src/libcore/macros.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,9 @@ macro_rules! debug_assert_ne {
239239
///
240240
/// The `?` operator was added to replace `try!` and should be used instead.
241241
/// Furthermore, `try` is a reserved word in Rust 2018, so if you must use
242-
/// it, you will need to use the raw-identifier syntax: `r#try`.
242+
/// it, you will need to use the [raw-identifier syntax][ris]: `r#try`.
243+
///
244+
/// [ris]: https://doc.rust-lang.org/nightly/rust-by-example/compatibility/raw_identifiers.html
243245
///
244246
/// `try!` matches the given [`Result`]. In case of the `Ok` variant, the
245247
/// expression has the value of the wrapped value.

0 commit comments

Comments
 (0)
Please sign in to comment.