Skip to content

Commit 1151724

Browse files
committed
comments
1 parent bab2c58 commit 1151724

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/items/traits.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@ Object safe traits can be the base trait of a [trait object]. A trait is
6868
*object safe* if it has the following qualities (defined in [RFC 255]):
6969

7070
* All [supertraits] must also be object safe.
71-
* It must not require `Self: Sized` (i.e. `Sized` must not be a [supertrait][supertraits])
71+
* `Sized` must not be a [supertrait][supertraits]. In other words, it must not require `Self: Sized`.
7272
* It must not have any associated constants.
73-
* All associated functions must "dispatchable from a trait object" or "explicitly non-dispatchable from a trait object":
73+
* All associated functions must either be dispatchable from a trait object or be explicitly non-dispatchable:
7474
* Dispatchable functions require:
7575
* Not have any type parameters (although lifetime parameters are allowed),
7676
* Be a [method] that does not use `Self` except in the type of the receiver.

0 commit comments

Comments
 (0)