Skip to content

Commit

Permalink
Fixes #169
Browse files Browse the repository at this point in the history
  • Loading branch information
Markis Taylor authored and remojansen committed Apr 11, 2016
1 parent 9a04e95 commit c95c7e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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(); };

}
```
Expand Down

0 comments on commit c95c7e0

Please sign in to comment.