Fix typos in code and docs with codespell

Using v1.11.0 from https://github.com/lucasdemarchi/codespell
This commit is contained in:
Rémi Verschelde
2018-01-18 21:37:17 +01:00
parent a1c08b7109
commit 9f479f096c
138 changed files with 405 additions and 405 deletions

View File

@ -58,19 +58,19 @@ protected:
Variant variant;
Variant initial;
bool hide_from_editor;
bool overrided;
bool overridden;
VariantContainer() :
order(0),
persist(false),
hide_from_editor(false),
overrided(false) {
overridden(false) {
}
VariantContainer(const Variant &p_variant, int p_order, bool p_persist = false) :
order(p_order),
persist(p_persist),
variant(p_variant),
hide_from_editor(false),
overrided(false) {
overridden(false) {
}
};