Skip to content

Commit 9bc0dbe

Browse files
committed
Fix typos “an”→“a” and a few different ones that appeared in the same search
1 parent 25ebc35 commit 9bc0dbe

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/macros.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ fn rewrite_macro_inner(
401401
handle_vec_semi(context, shape, arg_vec, macro_name, style)
402402
} else {
403403
// If we are rewriting `vec!` macro or other special macros,
404-
// then we can rewrite this as an usual array literal.
404+
// then we can rewrite this as a usual array literal.
405405
// Otherwise, we must preserve the original existence of trailing comma.
406406
let macro_name = &macro_name.as_str();
407407
let mut force_trailing_comma = if trailing_comma {

src/string.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ pub(crate) fn rewrite_string<'a>(
153153
wrap_str(result, fmt.config.max_width(), fmt.shape)
154154
}
155155

156-
/// Returns the index to the end of the URL if the split at index of the given string includes an
156+
/// Returns the index to the end of the URL if the split at index of the given string includes a
157157
/// URL or alike. Otherwise, returns `None`.
158158
fn detect_url(s: &[&str], index: usize) -> Option<usize> {
159159
let start = match s[..=index].iter().rposition(|g| is_whitespace(g)) {

tests/source/cfg_if/detect/arch/x86.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//!
33
//! The features are detected using the `detect_features` function below.
44
//! This function uses the CPUID instruction to read the feature flags from the
5-
//! CPU and encodes them in an `usize` where each bit position represents
5+
//! CPU and encodes them in a `usize` where each bit position represents
66
//! whether a feature is available (bit is set) or unavaiable (bit is cleared).
77
//!
88
//! The enum `Feature` is used to map bit positions to feature names, and the

tests/target/cfg_if/detect/arch/x86.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//!
33
//! The features are detected using the `detect_features` function below.
44
//! This function uses the CPUID instruction to read the feature flags from the
5-
//! CPU and encodes them in an `usize` where each bit position represents
5+
//! CPU and encodes them in a `usize` where each bit position represents
66
//! whether a feature is available (bit is set) or unavaiable (bit is cleared).
77
//!
88
//! The enum `Feature` is used to map bit positions to feature names, and the

0 commit comments

Comments
 (0)