From 9b50e354ad8dc374b4ddf636c28bb192e04ce25e Mon Sep 17 00:00:00 2001 From: Emily Date: Tue, 3 Jan 2012 23:19:54 -0700 Subject: [PATCH] Replace forgotten instance of Limbo with P --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 85b74fa..e10db3e 100644 --- a/README.md +++ b/README.md @@ -100,7 +100,7 @@ P(MySuperclass, function(proto, super, class, superclass) { // for shorthand, you can pass an object in lieu of the function argument, // but you lose the niceness of super and private methods. -Limbo({ init: function(a) { this.thing = a } }); +P({ init: function(a) { this.thing = a } }); MyClass = P(function(p) { p.init = function() { console.log("init!") }; }); // instantiate objects by calling the class