From 733be0f954654ebfc8359b108c2e531c7087f8cc Mon Sep 17 00:00:00 2001 From: Payton Swick Date: Thu, 25 Jul 2024 16:42:34 -0400 Subject: [PATCH] Remove weird comment leader in some examples --- src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 0adfb67..ae6edba 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -20,14 +20,14 @@ //! //! ```text //! $ grepdef parseQuery ./src -//! // ./src/queries.js:function parseQuery { +//! ./src/queries.js:function parseQuery { //! ``` //! //! Just like `grep`, you can add the `-n` option to include line numbers. //! //! ```text //! $ grepdef -n parseQuery ./src -//! // ./src/queries.js:17:function parseQuery { +//! ./src/queries.js:17:function parseQuery { //! ``` //! //! The search will be faster if you specify what type of file you are searching for using the @@ -35,7 +35,7 @@ //! //! ```text //! $ grepdef --type js -n parseQuery ./src -//! // ./src/queries.js:17:function parseQuery { +//! ./src/queries.js:17:function parseQuery { //! ``` //! //! To use the crate from other Rust code, use [Searcher].