Update typos-cli to v1.24.6. Add scripts/check-spelling. Fix typos (#17961)

This commit is contained in:
Peter Tripp 2024-09-17 15:08:14 -04:00 committed by GitHub
parent 447a5d6e6e
commit c28b22d1cf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 20 additions and 18 deletions

View file

@ -1619,7 +1619,7 @@ fn task_summary(task: &TaskState, error_code: Option<i32>) -> (bool, String, Str
/// the cursor's `point` is not updated to the new line and column values
///
/// * ??? there could be more consequences, and any further "proper" streaming from the PTY might bug and/or panic.
/// Still, concequent `append_text_to_term` invocations are possible and display the contents correctly.
/// Still, subsequent `append_text_to_term` invocations are possible and display the contents correctly.
///
/// Despite the quirks, this is the simplest approach to appending text to the terminal: its alternative, `grid_mut` manipulations,
/// do not properly set the scrolling state and display odd text after appending; also those manipulations are more tedious and error-prone.