Skip to content

Commit c4fe781

Browse files
committed
link to raw string docs in libregex docs
Fixes #17023
1 parent e84e7a0 commit c4fe781

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/libregex/lib.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@
4141
//! it to match anywhere in the text. Anchors can be used to ensure that the
4242
//! full text matches an expression.
4343
//!
44-
//! This example also demonstrates the utility of raw strings in Rust, which
44+
//! This example also demonstrates the utility of [raw
45+
//! strings](../reference.html#character-and-string-literals) in Rust, which
4546
//! are just like regular strings except they are prefixed with an `r` and do
4647
//! not process any escape sequences. For example, `"\\d"` is the same
4748
//! expression as `r"\d"`.

0 commit comments

Comments
 (0)