Fix typo 'begining' to 'beginning'

This commit is contained in:
Poommetee Ketson 2017-09-01 22:54:57 +07:00
parent 6e9e25b41d
commit 69ccae3d99
4 changed files with 4 additions and 4 deletions

View File

@ -141,7 +141,7 @@ ObjectID EditorHistory::get_history_obj(int p_obj) const {
return history[p_obj].path[history[p_obj].level].object; return history[p_obj].path[history[p_obj].level].object;
} }
bool EditorHistory::is_at_begining() const { bool EditorHistory::is_at_beginning() const {
return current <= 0; return current <= 0;
} }
bool EditorHistory::is_at_end() const { bool EditorHistory::is_at_end() const {

View File

@ -74,7 +74,7 @@ class EditorHistory {
void _add_object(ObjectID p_object, const String &p_property, int p_level_change); void _add_object(ObjectID p_object, const String &p_property, int p_level_change);
public: public:
bool is_at_begining() const; bool is_at_beginning() const;
bool is_at_end() const; bool is_at_end() const;
void add_object(ObjectID p_object); void add_object(ObjectID p_object);

View File

@ -1373,7 +1373,7 @@ void EditorNode::_edit_current() {
uint32_t current = editor_history.get_current(); uint32_t current = editor_history.get_current();
Object *current_obj = current > 0 ? ObjectDB::get_instance(current) : NULL; Object *current_obj = current > 0 ? ObjectDB::get_instance(current) : NULL;
property_back->set_disabled(editor_history.is_at_begining()); property_back->set_disabled(editor_history.is_at_beginning());
property_forward->set_disabled(editor_history.is_at_end()); property_forward->set_disabled(editor_history.is_at_end());
this->current = current_obj; this->current = current_obj;

View File

@ -3349,7 +3349,7 @@ Error ShaderLanguage::_parse_shader(const Map<StringName, FunctionInfo> &p_funct
Token tk = _get_token(); Token tk = _get_token();
if (tk.type != TK_SHADER_TYPE) { if (tk.type != TK_SHADER_TYPE) {
_set_error("Expected 'shader_type' at the begining of shader."); _set_error("Expected 'shader_type' at the beginning of shader.");
return ERR_PARSE_ERROR; return ERR_PARSE_ERROR;
} }