diff --git a/src/items/enumerations.md b/src/items/enumerations.md index d9d16bf0a7..be207f2f9f 100644 --- a/src/items/enumerations.md +++ b/src/items/enumerations.md @@ -320,8 +320,8 @@ enum ZeroVariants {} ``` r[items.enum.empty.uninhabited] -Zero-variant enums are equivalent to the [never type], but they cannot be -coerced into other types. +Only the [never type] can be coerced into zero-variant enums. Conversely, +zero-variant enums cannot be coerced into any other type. ```rust,compile_fail # enum ZeroVariants {}