diff --git a/src/appendix-02-operators.md b/src/appendix-02-operators.md index 925862916e..68c0d0bb8b 100644 --- a/src/appendix-02-operators.md +++ b/src/appendix-02-operators.md @@ -136,7 +136,7 @@ parameters with trait bounds. |--------|-------------| | `T: U` | Generic parameter `T` constrained to types that implement `U` | | `T: 'a` | Generic type `T` must outlive lifetime `'a` (meaning the type cannot transitively contain any references with lifetimes shorter than `'a`) | -| `T : 'static` | Generic type `T` contains no borrowed references other than `'static` ones | +| `T: 'static` | Generic type `T` contains no borrowed references other than `'static` ones | | `'b: 'a` | Generic lifetime `'b` must outlive lifetime `'a` | | `T: ?Sized` | Allow generic type parameter to be a dynamically sized type | | `'a + trait`, `trait + trait` | Compound type constraint |