spellcheck

This commit is contained in:
easong-openai
2025-08-04 20:56:14 -07:00
parent 4a556b9a6e
commit bbb266d0da

View File

@@ -214,17 +214,17 @@ mod tests {
#[test]
fn rows_do_not_exceed_width_ascii() {
let mut rb = RowBuilder::new(10);
rb.push_fragment("hello world this is a test");
rb.push_fragment("hello whirl this is a test");
let rows = rb.rows().to_vec();
assert_eq!(
rows,
vec![
Row {
text: "hello worl".to_string(),
text: "hello whir".to_string(),
explicit_break: false
},
Row {
text: "d this is ".to_string(),
text: "l this is ".to_string(),
explicit_break: false
}
]