tisonkun commented on code in PR #211:
URL: https://github.com/apache/datasketches-rust/pull/211#discussion_r3848205912
##########
datasketches/src/thetafamily/tuple/intersection.rs:
##########
@@ -79,7 +79,7 @@ use crate::tuple::sketch::TupleSketchView;
/// intersection.update(&a).unwrap();
/// intersection.update(&b).unwrap();
///
-/// let result = intersection.to_sketch(true);
+/// let result = intersection.to_sketch(true).expect("after update");
Review Comment:
```suggestion
/// let result = intersection.to_sketch(true).unwrap();
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]