mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-24 18:10:56 -05:00
refactor(report): Rename source field
This commit is contained in:
parent
859769b835
commit
b12e90c141
2 changed files with 6 additions and 6 deletions
|
@ -29,7 +29,7 @@ pub fn process_file(
|
||||||
line,
|
line,
|
||||||
line_num,
|
line_num,
|
||||||
col_num,
|
col_num,
|
||||||
word: ident.token(),
|
typo: ident.token(),
|
||||||
correction,
|
correction,
|
||||||
non_exhaustive: (),
|
non_exhaustive: (),
|
||||||
};
|
};
|
||||||
|
@ -43,7 +43,7 @@ pub fn process_file(
|
||||||
line,
|
line,
|
||||||
line_num,
|
line_num,
|
||||||
col_num,
|
col_num,
|
||||||
word: word.token(),
|
typo: word.token(),
|
||||||
correction,
|
correction,
|
||||||
non_exhaustive: (),
|
non_exhaustive: (),
|
||||||
};
|
};
|
||||||
|
|
|
@ -7,7 +7,7 @@ pub struct Message<'m> {
|
||||||
pub line: &'m [u8],
|
pub line: &'m [u8],
|
||||||
pub line_num: usize,
|
pub line_num: usize,
|
||||||
pub col_num: usize,
|
pub col_num: usize,
|
||||||
pub word: &'m str,
|
pub typo: &'m str,
|
||||||
pub correction: &'m str,
|
pub correction: &'m str,
|
||||||
#[serde(skip)]
|
#[serde(skip)]
|
||||||
pub(crate) non_exhaustive: (),
|
pub(crate) non_exhaustive: (),
|
||||||
|
@ -23,7 +23,7 @@ pub fn print_brief(msg: Message) {
|
||||||
msg.path.display(),
|
msg.path.display(),
|
||||||
msg.line_num,
|
msg.line_num,
|
||||||
msg.col_num,
|
msg.col_num,
|
||||||
msg.word,
|
msg.typo,
|
||||||
msg.correction
|
msg.correction
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -33,7 +33,7 @@ pub fn print_long(msg: Message) {
|
||||||
let line_indent: String = itertools::repeat_n(" ", line_num.len()).collect();
|
let line_indent: String = itertools::repeat_n(" ", line_num.len()).collect();
|
||||||
|
|
||||||
let hl_indent: String = itertools::repeat_n(" ", msg.col_num).collect();
|
let hl_indent: String = itertools::repeat_n(" ", msg.col_num).collect();
|
||||||
let hl: String = itertools::repeat_n("^", msg.word.len()).collect();
|
let hl: String = itertools::repeat_n("^", msg.typo.len()).collect();
|
||||||
|
|
||||||
let line = String::from_utf8_lossy(msg.line);
|
let line = String::from_utf8_lossy(msg.line);
|
||||||
let line = line.replace("\t", " ");
|
let line = line.replace("\t", " ");
|
||||||
|
@ -44,7 +44,7 @@ pub fn print_long(msg: Message) {
|
||||||
writeln!(
|
writeln!(
|
||||||
handle,
|
handle,
|
||||||
"error: `{}` should be `{}`",
|
"error: `{}` should be `{}`",
|
||||||
msg.word, msg.correction
|
msg.typo, msg.correction
|
||||||
)
|
)
|
||||||
.unwrap();
|
.unwrap();
|
||||||
writeln!(
|
writeln!(
|
||||||
|
|
Loading…
Reference in a new issue