add a missed break line

This commit is contained in:
Lavrentiy Rubtsov 2022-05-07 14:30:39 +06:00 committed by GitHub
parent 3be0d3ed0b
commit 2f56ecf1a7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -160,6 +160,7 @@ Now `Rabbit` has the `stop` method that calls the parent `super.stop()` in the p
As was mentioned in the chapter <info:arrow-functions>, arrow functions do not have `super`.
If accessed, it's taken from the outer function. For instance:
```js
class Rabbit extends Animal {
stop() {