about summary refs log tree commit diff
path: root/src/libregex
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-11-06 13:32:20 -0800
committerAlex Crichton <alex@alexcrichton.com>2014-11-06 13:53:26 -0800
commit15e5779ae0093a7fe67ac5d04a449be033fb5498 (patch)
treea9a3c4355c5f287f66fd61a0fe5d24c0d17543d4 /src/libregex
parentec983c684b960eb6457644ae8077132546126e99 (diff)
parentc4fe78176334bcf23f0f3387cfcdf040a9316e61 (diff)
downloadrust-15e5779ae0093a7fe67ac5d04a449be033fb5498.tar.gz
rust-15e5779ae0093a7fe67ac5d04a449be033fb5498.zip
rollup merge of #18695 : steveklabnik/gh17023
Diffstat (limited to 'src/libregex')
-rw-r--r--src/libregex/lib.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libregex/lib.rs b/src/libregex/lib.rs
index f3633a006b1..b849afbbf54 100644
--- a/src/libregex/lib.rs
+++ b/src/libregex/lib.rs
@@ -41,7 +41,8 @@
 //! it to match anywhere in the text. Anchors can be used to ensure that the
 //! full text matches an expression.
 //!
-//! This example also demonstrates the utility of raw strings in Rust, which
+//! This example also demonstrates the utility of [raw
+//! strings](../reference.html#character-and-string-literals) in Rust, which
 //! are just like regular strings except they are prefixed with an `r` and do
 //! not process any escape sequences. For example, `"\\d"` is the same
 //! expression as `r"\d"`.