From 032d1956a623b92e98a9fd65a8b172b7a2cb3c8a Mon Sep 17 00:00:00 2001 From: Mike Gerwitz Date: Thu, 3 Mar 2011 19:45:03 -0500 Subject: [PATCH] Altered README to reflect recent 'natural definition' addition --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 335b342..cac3a31 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ class. The constructor is provided as the `__construct()` method (influenced by var Class = require( 'easejs' ).Class; - var Foo = Class.extend( + var Foo = Class( { foo: '', @@ -90,7 +90,7 @@ they contain one or more abstract methods. var Class = require( 'easejs' ).Class; - var AbstractFoo = Class.extend( + var AbstractFoo = Class( { // a function may be provided if you wish the subtypes to implement a // certain number of arguments