Skip to content

Commit 6793963

Browse files
Avoid spurious markdown list creation
Co-authored-by: lzutao <[email protected]>
1 parent b62140a commit 6793963

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/design_notes/autoref_ops.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Autoref/Autoderef in operators
22

33
Rust permits overriding most of the operators (e.g., `+`, `-`, `+=`). In part
4-
due to `Copy` types not auto-dereferencing, it is common to have `T + &T` or `&T
5-
+ &T`, with potentially many levels of indirection on either side of the
4+
due to `Copy` types not auto-dereferencing, it is common to have `T + &T`
5+
or `&T + &T`, with potentially many levels of indirection on either side of the
66
operator.
77

88
There is desire in general to avoid needing to both add impls for referenced

0 commit comments

Comments
 (0)