fix: Typos (#15313)

Fixed typos in the code base according with output from `codespell`
tool.

Release Notes:

- N/A
This commit is contained in:
Calin Martinconi 2024-07-27 03:52:37 +03:00 committed by GitHub
parent 6af385c09e
commit 3751f67730
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 17 additions and 16 deletions

View file

@ -947,7 +947,7 @@ impl TerminalTransaction {
}
pub fn push(&mut self, hunk: String, cx: &mut AppContext) {
// Ensure that the assistant cannot accidently execute commands that are streamed into the terminal
// Ensure that the assistant cannot accidentally execute commands that are streamed into the terminal
let input = hunk.replace(CARRIAGE_RETURN, " ");
self.terminal
.update(cx, |terminal, _| terminal.input(input));