diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-02-13 09:23:29 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2019-02-13 09:23:29 +0100 |
commit | 5fc86026ca097f97335ab01383170245d42b0640 (patch) | |
tree | f51aec7d41f9e0018375177756f0b9e4276ef610 /servers/visual | |
parent | 55ca2a7c88503d0f07785ab9215809b02027f858 (diff) |
Fix typos with codespell
Using codespell 1.14.0.
Method:
```
$ cat > ../godot-word-whitelist.txt << EOF
ang
doubleclick
lod
nd
numer
que
te
unselect
EOF
$ codespell -w -q 3 -I ../godot-word-whitelist.txt --skip="./thirdparty,*.po"
$ git diff // undo unwanted changes
```
Diffstat (limited to 'servers/visual')
-rw-r--r-- | servers/visual/shader_language.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/servers/visual/shader_language.h b/servers/visual/shader_language.h index acc3297bed..67c273d267 100644 --- a/servers/visual/shader_language.h +++ b/servers/visual/shader_language.h @@ -646,7 +646,7 @@ private: const DataType args[MAX_ARGS]; }; - struct BuiltinFuncOutArgs { //arguments used as out in built in funcions + struct BuiltinFuncOutArgs { //arguments used as out in built in functions const char *name; int argument; }; |