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 13b8110 commit ed94211Copy full SHA for ed94211
src/options.rs
@@ -7,12 +7,12 @@
7
//! API can be used as follows:
8
//!
9
//! ```rust
10
-//! # use mongodb::options::FindOptions;
11
-//! #
12
-//! # let options = FindOptions::builder()
13
-//! # .limit(20)
14
-//! # .batch_size(5)
15
-//! # .build();
+//! use mongodb::options::FindOptions;
+//!
+//! let options = FindOptions::builder()
+//! .limit(20)
+//! .batch_size(5)
+//! .build();
16
//! ```
17
18
pub use crate::{
0 commit comments