Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed typo #171

Open
wants to merge 1 commit into
base: v4-develop
Choose a base branch
from
Open
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
@@ -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

Original file line number Diff line number Diff line change
@@ -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);
Original file line number Diff line number Diff line change
@@ -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);
2 changes: 1 addition & 1 deletion protocols/include/PluginFactory.h
Original file line number Diff line number Diff line change
@@ -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:
2 changes: 1 addition & 1 deletion protocols/include/PluginManager.h
Original file line number Diff line number Diff line change
@@ -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 */