about summary refs log tree commit diff
path: root/library/core/src/ops
diff options
context:
space:
mode:
authorMiguel Ojeda <ojeda@kernel.org>2024-07-28 16:37:58 +0200
committerMiguel Ojeda <ojeda@kernel.org>2024-07-29 00:57:08 +0200
commitcf87203f483751e0f6daa74b9d129c04feb48355 (patch)
tree5f1d08965f4e6953dcbc10f05e9048c0c95fec8d /library/core/src/ops
parent2cbbe8b8bb2be672b14cf741a2f0ec24a49f3f0b (diff)
downloadrust-cf87203f483751e0f6daa74b9d129c04feb48355.tar.gz
rust-cf87203f483751e0f6daa74b9d129c04feb48355.zip
Remove spurious backticks detected by `rustdoc::unescaped_backticks`
There are only 3 cases across the crates rendered in the website (`core`,
`alloc`, `std`, `proc_macro` and `test`), and they are all in `core`.

Clean them up, so that the lint can be enabled in the next commit.

Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
Diffstat (limited to 'library/core/src/ops')
-rw-r--r--library/core/src/ops/deref.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/ops/deref.rs b/library/core/src/ops/deref.rs
index 9849410d484..f0d2c761ef3 100644
--- a/library/core/src/ops/deref.rs
+++ b/library/core/src/ops/deref.rs
@@ -282,7 +282,7 @@ impl<T: ?Sized> DerefMut for &mut T {
 /// FIXME(deref_patterns): The precise semantics are undecided; the rough idea is that
 /// successive calls to `deref`/`deref_mut` without intermediate mutation should be
 /// idempotent, in the sense that they return the same value as far as pattern-matching
-/// is concerned. Calls to `deref`/`deref_mut`` must leave the pointer itself likewise
+/// is concerned. Calls to `deref`/`deref_mut` must leave the pointer itself likewise
 /// unchanged.
 #[unstable(feature = "deref_pure_trait", issue = "87121")]
 #[lang = "deref_pure"]