From dca8023fba581fcf43eb9aad11235cc08299521e Mon Sep 17 00:00:00 2001 From: Benjamin Levy Date: Wed, 7 Aug 2019 14:24:47 -0400 Subject: [PATCH] Fix escape in std::path docs --- src/libstd/path.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/path.rs b/src/libstd/path.rs index 56fde77daac58..3000298430bb3 100644 --- a/src/libstd/path.rs +++ b/src/libstd/path.rs @@ -9,7 +9,7 @@ //! //! Paths can be parsed into [`Component`]s by iterating over the structure //! returned by the [`components`] method on [`Path`]. [`Component`]s roughly -//! correspond to the substrings between path separators (`/` or `\`). You can +//! correspond to the substrings between path separators (`/` or `\\`). You can //! reconstruct an equivalent path from components with the [`push`] method on //! [`PathBuf`]; note that the paths may differ syntactically by the //! normalization described in the documentation for the [`components`] method.