Skip to content

Commit 07e0394

Browse files
committed
Remove extraneous trailing whitespace
1 parent 499a5ed commit 07e0394

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/types/function-item.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ r[type.fn-item]
44

55
r[type.fn-item.intro]
66
When referred to, a function item, or the constructor of a tuple-like struct or
7-
enum variant, yields a zero-sized value of its _function item type_.
7+
enum variant, yields a zero-sized value of its _function item type_\1
88

99
r[type.fn-item.unique]
1010
That type explicitly identifies the function - its name, its type arguments, and its

src/types/impl-trait.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ r[type.impl-trait.generic-capture.auto.intro]
122122
Return-position `impl Trait` abstract types automatically capture certain of the in-scope generic parameters. Everywhere, these automatically capture all in-scope type and const generic parameters.
123123

124124
r[type.impl-trait.generic-capture.auto.trait]
125-
On items of trait impls and trait definitions, these types additionally automatically capture all in-scope generic lifetime parameters, including higher-ranked ones.
125+
On items of trait impls and trait definitions, these types additionally automatically capture all in-scope generic lifetime parameters, including higher-ranked ones\1
126126

127127
r[type.impl-trait.generic-capture.auto.fn]
128128
On free functions and on associated functions and methods of inherent impls, only the generic lifetime parameters that appear in the bounds of abstract return type are captured.
@@ -143,7 +143,7 @@ fn capture<'a, 'b, T>(x: &'a (), y: T) -> impl Sized + use<'a, T> {
143143
```
144144

145145
r[type.impl-trait.generic-capture.precise.constraint-single]
146-
Currently, only one `use<..>` bound may be present in a bounds list, such bounds are not allowed in the signature of items of a trait definition, all in-scope type and const generic parameters must be included, and all lifetime parameters that appear in other bounds of the abstract type must be included.
146+
Currently, only one `use<..>` bound may be present in a bounds list, such bounds are not allowed in the signature of items of a trait definition, all in-scope type and const generic parameters must be included, and all lifetime parameters that appear in other bounds of the abstract type must be included\1
147147

148148
r[type.impl-trait.generic-capture.precise.constraint-lifetime]
149149
Within the `use<..>` bound, any lifetime parameters present must appear before all type and const generic parameters, and the elided lifetime (`'_`) may be present if it is otherwise allowed to appear within the `impl Trait` return type.

src/types/textual.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ not a surrogate), represented as a 32-bit unsigned word in the 0x0000 to 0xD7FF
1111
or 0xE000 to 0x10FFFF range.
1212

1313
r[type.text.char-precondition]
14-
It is immediate [undefined behavior] to create a
14+
It is immediate [undefined behavior] to create \1
1515
`char` that falls outside this range. A `[char]` is effectively a UCS-4 / UTF-32
1616
string of length 1.
1717

0 commit comments

Comments
 (0)