Skip to content

Commit 32aafca

Browse files
committed
Fix indentation in documentation comments for clarity
1 parent 1d8f226 commit 32aafca

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

matcher_rs/src/regex_matcher.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ impl<'a> TextMatcherTrait<'a, RegexResult<'a>> for RegexMatcher {
364364
/// # Arguments
365365
///
366366
/// * `processed_text_process_type_set` - A slice of tuples where the first element is the processed text
367-
/// and the second element is the set of process types associated with that text.
367+
/// and the second element is the set of process types associated with that text.
368368
///
369369
/// # Returns
370370
///

matcher_rs/src/simple_matcher.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,8 @@ impl SimpleMatcher {
168168
/// # Parameters
169169
///
170170
/// - `process_type_word_map`: A reference to a hash map that associates [ProcessType] with another hash map.
171-
/// The inner hash map links word identifiers (`u32`) to strings representing words. The outer hash map allows
172-
/// different process types to have their own specific set of words.
171+
/// The inner hash map links word identifiers (`u32`) to strings representing words. The outer hash map allows
172+
/// different process types to have their own specific set of words.
173173
///
174174
/// # Type Parameters
175175
///

matcher_rs/src/util/word.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ impl SimpleWord {
1919
/// # Arguments
2020
///
2121
/// * `word` - An input that implements the `AsRef<str>` trait. This allows for a wide range
22-
/// of input types, including `String`, `&str`, and `Cow<str>`.
22+
/// of input types, including `String`, `&str`, and `Cow<str>`.
2323
///
2424
/// # Returns
2525
///
@@ -91,7 +91,7 @@ impl SimpleWord {
9191
/// # Arguments
9292
///
9393
/// * `word` - An input that implements the `AsRef<str>` trait. This could be a
94-
/// `String`, `&str`, or `Cow<str>`.
94+
/// `String`, `&str`, or `Cow<str>`.
9595
///
9696
/// # Returns
9797
///
@@ -123,7 +123,7 @@ impl SimpleWord {
123123
/// # Arguments
124124
///
125125
/// * `word` - An input that implements the `AsRef<str>` trait. This could be a
126-
/// `String`, `&str`, or `Cow<str>`.
126+
/// `String`, `&str`, or `Cow<str>`.
127127
///
128128
/// # Returns
129129
///

0 commit comments

Comments
 (0)