You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Section 8.4 contains StringResult::{StringOK, ErrorReason}, which probably should be renamed.
Section 22 contains OptionalFloat64::{Valuef64, Missingf64}, which probably should be renamed.
Section 22 introduces a generic Option<T>, but doesn't mention that its variants are reexported by default. (In fact, the guide doesn't mention that variants can be reexported at all.)
The text was updated successfully, but these errors were encountered:
We have lots of the legacy of non-namespaced enums throughout the guide:
Ordering::{Less, Equal, Greater}
instead of{Less, Equal, Greater}
(cf. The enum type in Guide is not working #17967, Update guide to reflect changes to enums. #19551).StringResult::{StringOK, ErrorReason}
, which probably should be renamed.OptionalFloat64::{Valuef64, Missingf64}
, which probably should be renamed.Option<T>
, but doesn't mention that its variants are reexported by default. (In fact, the guide doesn't mention that variants can be reexported at all.)The text was updated successfully, but these errors were encountered: