Skip to content

Commit 603f2c9

Browse files
committed
Merge pull request #621 from oddui/fix-doc
fix doc for createjs.extend
2 parents 163c4dd + 6270052 commit 603f2c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/createjs/utils/extend.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ this.createjs = this.createjs||{};
4444
*
4545
* function MySubClass() {}
4646
* createjs.extend(MySubClass, MySuperClass);
47-
* ClassB.prototype.doSomething = function() { }
47+
* MySubClass.prototype.doSomething = function() { }
4848
*
4949
* var foo = new MySubClass();
5050
* console.log(foo instanceof MySuperClass); // true

0 commit comments

Comments
 (0)