File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ parameters with trait bounds.
136
136
| --------| -------------|
137
137
| ` T: U ` | Generic parameter ` T ` constrained to types that implement ` U ` |
138
138
| ` 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 |
140
140
| ` 'b: 'a ` | Generic lifetime ` 'b ` must outlive lifetime ` 'a ` |
141
141
| ` T: ?Sized ` | Allow generic type parameter to be a dynamically sized type |
142
142
| ` 'a + trait ` , ` trait + trait ` | Compound type constraint |
You can’t perform that action at this time.
0 commit comments