diff --git a/cocos2dx/support/CCNotificationCenter.h b/cocos2dx/support/CCNotificationCenter.h index 4dd28f471d..4d7201fcb9 100644 --- a/cocos2dx/support/CCNotificationCenter.h +++ b/cocos2dx/support/CCNotificationCenter.h @@ -63,7 +63,7 @@ public: void removeObserver(CCObject *target,const char *name); /** @brief Registers one hander for script binding. - * @note Only support Lua Binding now. + * @note Only supports Lua Binding now. * @param handler The lua handler. */ void registerScriptObserver(int handler); @@ -83,7 +83,7 @@ public: void postNotification(const char *name, CCObject *object); /** @brief Gets script handler. - * @note Only support Lua Binding now. + * @note Only supports Lua Binding now. * @return The script handle. */ inline int getScriptHandler() { return m_scriptHandler; };