Skip to content

Commit ed94211

Browse files
committed
minor: fix options doc example
1 parent 13b8110 commit ed94211

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/options.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
//! API can be used as follows:
88
//!
99
//! ```rust
10-
//! # use mongodb::options::FindOptions;
11-
//! #
12-
//! # let options = FindOptions::builder()
13-
//! # .limit(20)
14-
//! # .batch_size(5)
15-
//! # .build();
10+
//! use mongodb::options::FindOptions;
11+
//!
12+
//! let options = FindOptions::builder()
13+
//! .limit(20)
14+
//! .batch_size(5)
15+
//! .build();
1616
//! ```
1717
1818
pub use crate::{

0 commit comments

Comments
 (0)