diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-09-22 09:00:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-22 09:00:01 +0200 |
commit | 9906aeb2f8b492e6662e68aafe11e62524a87cc8 (patch) | |
tree | 61f479d3b83fafc419a348835ed823b350f3dc2f /core/object.h | |
parent | f6c94e62850c2418b4ccfe2bf6393974cc435f8d (diff) | |
parent | 1a97d6455d05320eef5ab9da7a7b0528d791be4f (diff) |
Merge pull request #11485 from rosshadden/fix/typos
Fixed a bunch of typos, including an error code.
[ci skip]
Diffstat (limited to 'core/object.h')
-rw-r--r-- | core/object.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/object.h b/core/object.h index 3070439138..7af2c78fc3 100644 --- a/core/object.h +++ b/core/object.h @@ -64,9 +64,9 @@ enum PropertyHint { PROPERTY_HINT_LAYERS_3D_RENDER, PROPERTY_HINT_LAYERS_3D_PHYSICS, PROPERTY_HINT_FILE, ///< a file path must be passed, hint_text (optionally) is a filter "*.png,*.wav,*.doc," - PROPERTY_HINT_DIR, ///< a directort path must be passed + PROPERTY_HINT_DIR, ///< a directory path must be passed PROPERTY_HINT_GLOBAL_FILE, ///< a file path must be passed, hint_text (optionally) is a filter "*.png,*.wav,*.doc," - PROPERTY_HINT_GLOBAL_DIR, ///< a directort path must be passed + PROPERTY_HINT_GLOBAL_DIR, ///< a directory path must be passed PROPERTY_HINT_RESOURCE_TYPE, ///< a resource object type PROPERTY_HINT_MULTILINE_TEXT, ///< used for string properties that can contain multiple lines PROPERTY_HINT_COLOR_NO_ALPHA, ///< used for ignoring alpha component when editing a color @@ -221,7 +221,7 @@ struct MethodInfo { //return NULL; /* - the following is an uncomprehensible blob of hacks and workarounds to compensate for many of the fallencies in C++. As a plus, this macro pretty much alone defines the object model. + the following is an incomprehensible blob of hacks and workarounds to compensate for many of the fallencies in C++. As a plus, this macro pretty much alone defines the object model. */ #define REVERSE_GET_PROPERTY_LIST \ |