Skip to content

Commit 749c764

Browse files
Some few text fixes
1 parent 7d3f9ae commit 749c764

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

CCBoot.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1064,7 +1064,7 @@ cc.loader = (function () {
10641064
loader = _register[type.toLowerCase()];
10651065
}
10661066
if (!loader) {
1067-
cc.error("loader for [" + type + "] not exists!");
1067+
cc.error("loader for [" + type + "] doesn't exist!");
10681068
return cb();
10691069
}
10701070
var realUrl = url;

cocos2d/actions/CCActionInterval.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ cc.ActionInterval = cc.FiniteTimeAction.extend(/** @lends cc.ActionInterval# */{
137137
*
138138
* @example
139139
* //example
140-
* action.easeing(cc.easeIn(3.0));
140+
* action.easing(cc.easeIn(3.0));
141141
* @param {Object} easeObj
142142
* @returns {cc.ActionInterval}
143143
*/
@@ -997,7 +997,7 @@ cc.Spawn = cc.ActionInterval.extend(/** @lends cc.Spawn# */{
997997
* Create a spawn action which runs several actions in parallel.
998998
* @function
999999
* @param {Array|cc.FiniteTimeAction}tempArray
1000-
* @return {cc.FiniteTimeAction}
1000+
* @return {cc.Spawn}
10011001
* @example
10021002
* // example
10031003
* var action = cc.spawn(cc.jumpBy(2, cc.p(300, 0), 50, 4), cc.rotateBy(2, 720));
@@ -1022,7 +1022,7 @@ cc.spawn = function (/*Multiple Arguments*/tempArray) {
10221022
* @static
10231023
* @deprecated since v3.0 <br /> Please use cc.spawn instead.
10241024
* @param {Array|cc.FiniteTimeAction}tempArray
1025-
* @return {cc.FiniteTimeAction}
1025+
* @return {cc.Spawn}
10261026
*/
10271027
cc.Spawn.create = cc.spawn;
10281028

0 commit comments

Comments
 (0)