From cc7cc316ab9df4df56cda158f9dcf49602b0fc2c Mon Sep 17 00:00:00 2001 From: Markis Taylor Date: Sun, 10 Apr 2016 21:54:35 -0700 Subject: [PATCH] IProvider Example doesnt compile --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c493181c1..2781c3ff2 100644 --- a/README.md +++ b/README.md @@ -451,8 +451,8 @@ class Ninja implements INinja { this.shuriken = shuriken; } - public fight() { return this._katana.hit(); }; - public sneak() { return this._shuriken.throw(); }; + public fight() { return this.katana.hit(); }; + public sneak() { return this.shuriken.throw(); }; } ```