We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44f5855 commit 809c3a5Copy full SHA for 809c3a5
src/lib.rs
@@ -236,7 +236,7 @@ where
236
/// field_two: HashSet<String>,
237
/// }
238
///
239
-/// get_typed_blob(|bytes| Ok(bincode::deserialize(bytes)?)).unwrap_or(MyType {
+/// get_typed_blob(|bytes| bincode::deserialize(bytes)).unwrap_or(MyType {
240
/// field: HashMap::new(),
241
/// field_two: HashSet::new(),
242
/// });
@@ -272,7 +272,7 @@ where
272
273
274
275
-/// get_typed_state(|bytes| Ok(bincode::deserialize(bytes)?)).unwrap_or(MyStateType {
+/// get_typed_state(|bytes| bincode::deserialize(bytes)).unwrap_or(MyStateType {
276
277
278
0 commit comments