Skip to content

Commit 67ab7b9

Browse files
committed
wordsmith comment so rustfmt doesn't add linebreaks
1 parent 7322074 commit 67ab7b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cmd/stats.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1523,8 +1523,8 @@ impl FieldType {
15231523
|| current_type == FieldType::TDateTime
15241524
|| current_type == FieldType::TNull)
15251525
{
1526-
// if we already have a utf8 string, use it, otherwise, convert the sample to a utf8 string
1527-
// if the sample is not valid utf8, we assume it is a binary string and return a string type
1526+
// if we already have a utf8 string, use it, otherwise, convert sample to utf8
1527+
// if the sample isn't valid utf8, we assume a binary string & return a string type
15281528
let date_string = if let Some(s) = utf8_string {
15291529
s
15301530
} else if let Ok(s) = from_utf8(sample) {

0 commit comments

Comments
 (0)