Skip to content

Commit 733be0f

Browse files
committed
Remove weird comment leader in some examples
1 parent 7fa41d9 commit 733be0f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,22 +20,22 @@
2020
//!
2121
//! ```text
2222
//! $ grepdef parseQuery ./src
23-
//! // ./src/queries.js:function parseQuery {
23+
//! ./src/queries.js:function parseQuery {
2424
//! ```
2525
//!
2626
//! Just like `grep`, you can add the `-n` option to include line numbers.
2727
//!
2828
//! ```text
2929
//! $ grepdef -n parseQuery ./src
30-
//! // ./src/queries.js:17:function parseQuery {
30+
//! ./src/queries.js:17:function parseQuery {
3131
//! ```
3232
//!
3333
//! The search will be faster if you specify what type of file you are searching for using the
3434
//! `--type` option.
3535
//!
3636
//! ```text
3737
//! $ grepdef --type js -n parseQuery ./src
38-
//! // ./src/queries.js:17:function parseQuery {
38+
//! ./src/queries.js:17:function parseQuery {
3939
//! ```
4040
//!
4141
//! To use the crate from other Rust code, use [Searcher].

0 commit comments

Comments
 (0)