diff --git a/scripts/ex/class.js b/scripts/ex/class.js index 04e0a6e..09c35fb 100644 --- a/scripts/ex/class.js +++ b/scripts/ex/class.js @@ -24,6 +24,6 @@ var Dog = Class( 'Dog', Dog( 'Fluffy' ).bark(); // alternatively, we can use the 'new' keyword -var inst = new Dog( 'Rompie' ); +var inst = new Dog( 'Bob' ); inst.bark();