Skip to content

Commit ceaaa59

Browse files
Merge pull request #2876 from jruderman/rmspace
Appendix (operators and symbols): remove extra space
2 parents 84435e5 + f83c4d0 commit ceaaa59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/appendix-02-operators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ parameters with trait bounds.
136136
|--------|-------------|
137137
| `T: U` | Generic parameter `T` constrained to types that implement `U` |
138138
| `T: 'a` | Generic type `T` must outlive lifetime `'a` (meaning the type cannot transitively contain any references with lifetimes shorter than `'a`) |
139-
| `T : 'static` | Generic type `T` contains no borrowed references other than `'static` ones |
139+
| `T: 'static` | Generic type `T` contains no borrowed references other than `'static` ones |
140140
| `'b: 'a` | Generic lifetime `'b` must outlive lifetime `'a` |
141141
| `T: ?Sized` | Allow generic type parameter to be a dynamically sized type |
142142
| `'a + trait`, `trait + trait` | Compound type constraint |

0 commit comments

Comments
 (0)