mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
Fix typos with codespell
Using codespell 1.17.1. Method: ``` $ cat > ../godot-word-whitelist.txt << EOF ang curvelinear dof doubleclick fave findn leapyear lod merchantibility nd numer ois ony que seeked synching te uint unselect webp EOF $ codespell -w -q 3 -I ../godot-word-whitelist.txt --skip="./thirdparty,*.po" $ git diff // undo unwanted changes ```
This commit is contained in:
parent
b1b56fd045
commit
3e78963bb9
23 changed files with 36 additions and 37 deletions
|
|
@ -578,7 +578,7 @@ GDScriptTokenizer::Token GDScriptTokenizer::potential_identifier() {
|
|||
}
|
||||
|
||||
void GDScriptTokenizer::newline(bool p_make_token) {
|
||||
// Don't overwrite previous newline, nor create if we want a line contination.
|
||||
// Don't overwrite previous newline, nor create if we want a line continuation.
|
||||
if (p_make_token && !pending_newline && !line_continuation) {
|
||||
Token newline(Token::NEWLINE);
|
||||
newline.start_line = line;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue