Skip to content

Commit

Permalink
readme update
Browse files Browse the repository at this point in the history
  • Loading branch information
radubrehar committed Jul 10, 2014
1 parent ef93b52 commit b562943
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -44,7 +44,7 @@ console.log(ford.year)
console.log(ford.make)
```

Notice the ```callSuper()``` method call, which can be used in any class method, and will call the method with the same name found on the super class. It also automatically transmits all the arguments it has, so you don't have to manually do so.
Notice the ```callSuper()``` method call, which can be used in any class method, and will call the method with the same name found on the super class. It also automatically sends all the arguments, so you don't have to manually do so.

```js
ford.getName() === 'Ford' //is true
Expand Down

0 comments on commit b562943

Please sign in to comment.