Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion luabindings/auto/api/PluginManager.lua
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
-- @return plugin::PluginProtocol#plugin::PluginProtocol ret (return value: cc.plugin::PluginProtocol)

--------------------------------
-- Destory the instance of PluginManager
-- Destroy the instance of PluginManager
-- @function [parent=#PluginManager] end
-- @param self

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ private void showBannerAd(int sizeEnum, int pos) {

@Override
public void run() {
// destory the ad view before
// destroy the ad view before
if (null != adView) {
if (null != mWm) {
mWm.removeView(adView);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ private void showBannerAd(int sizeEnum, int pos) {

@Override
public void run() {
// destory the ad view before
// destroy the ad view before
// if (null != adView) {
// if (null != mWm) {
// mWm.removeView(adView);
Expand Down
2 changes: 1 addition & 1 deletion protocols/include/PluginFactory.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class PluginFactory
/** Get singleton of PluginFactory */
static PluginFactory* getInstance();

/** Destory the instance of PluginFactory */
/** Destroy the instance of PluginFactory */
static void purgeFactory();

private:
Expand Down
2 changes: 1 addition & 1 deletion protocols/include/PluginManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class PluginManager
virtual ~PluginManager();
/** Get singleton of PluginManager */
static PluginManager* getInstance();
/** Destory the instance of PluginManager */
/** Destroy the instance of PluginManager */
static void end();

/** load the plugin by name */
Expand Down