From 6b5df5a77e00022a7acd3f022939aec36ec710ad Mon Sep 17 00:00:00 2001 From: Mike Gerwitz Date: Mon, 26 Dec 2011 23:23:51 -0500 Subject: [PATCH] Less childish name for dog class example --- scripts/ex/class.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();