Skip to content

Commit 3d6aec0

Browse files
committed
Fixing documentation typos
1 parent 8ed0a59 commit 3d6aec0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

cocos2d/CCNodeColor.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@
211211
* Features:
212212
*
213213
* - It supports one or more children
214-
* - Only one children will be active a time
214+
* - Only one child will be active a time
215215
*/
216216
@interface CCNodeMultiplexer : CCNode {
217217
unsigned int _enabledNode;
@@ -224,21 +224,21 @@
224224
/// -----------------------------------------------------------------------
225225

226226
/**
227-
* Creates a CCNodeMultiplexer with an array of layers.
227+
* Creates a CCNodeMultiplexer with an array of nodes.
228228
*
229229
* @param arrayOfNodes Array of nodes.
230230
*
231-
* @return The CCNodeMultiplexer Object.
231+
* @return The CCNodeMultiplexer object.
232232
*/
233233
+(id)nodeWithArray:(NSArray*)arrayOfNodes;
234234

235-
/** Creates a CCMultiplexLayer with one or more layers using a variable argument list.
235+
/** Creates a CCMultiplexLayer with one or more nodes using a variable argument list.
236236
* Example:
237237
* @code mux = [CCNodeMultiplexer nodeWithNodes:nodeA, nodeB, nodeC, nil];
238238
*
239239
* @param node List of nodes.
240240
* @param ... Nil terminator.
241-
* @return The CCNodeMultiplexer Object.
241+
* @return The CCNodeMultiplexer object.
242242
*/
243243
+(id)nodeWithNodes:(CCNode*)node, ... NS_REQUIRES_NIL_TERMINATION;
244244

@@ -248,7 +248,7 @@
248248
/// -----------------------------------------------------------------------
249249

250250
/**
251-
* Initializes a CCNodeMultiplexer with an array of layers.
251+
* Initializes a CCNodeMultiplexer with an array of nodes.
252252
*
253253
* @param arrayOfNodes Array of nodes.
254254
*

0 commit comments

Comments
 (0)