diff --git a/serde/Cargo.toml b/serde/Cargo.toml index 9dff8d8b..2932e064 100644 --- a/serde/Cargo.toml +++ b/serde/Cargo.toml @@ -71,7 +71,6 @@ alloc = ["serde_core/alloc"] # Be sure that this is what you want before enabling this feature. rc = ["serde_core/rc"] -# Provide impls for Result. Enabling these impls allows for serialization -# and deserialization of Result types, which may be useful in certain contexts -# but could lead to confusion if ? or unwrap are overused. +# Provide impls for Result. Convenient in some contexts but can lead to +# confusion if ? or unwrap are used incautiously. result = ["serde_core/result"] diff --git a/serde_core/Cargo.toml b/serde_core/Cargo.toml index b00ad51e..06564343 100644 --- a/serde_core/Cargo.toml +++ b/serde_core/Cargo.toml @@ -55,7 +55,6 @@ alloc = [] # Be sure that this is what you want before enabling this feature. rc = [] -# Provide impls for Result. Enabling these impls allows for serialization -# and deserialization of Result types, which may be useful in certain contexts -# but could lead to confusion if ? or unwrap are overused. +# Provide impls for Result. Convenient in some contexts but can lead to +# confusion if ? or unwrap are used incautiously. result = []