feat: enable auto-deployment of docs to gh-pages branch from Travis CI

This commit is contained in:
Bob Nystrom
2018-07-15 04:35:33 +00:00
parent f4238a38e8
commit e6b216e1b0
3 changed files with 5 additions and 6 deletions
+4 -3
View File
@@ -158,9 +158,10 @@ are available on an object. When you write:
unicorn.isFancy
You're saying "look up the method `isFancy` in the scope of the object
`unicorn`". In this case, the fact that you want to look up a *method* `isFancy`
and not a *variable* `isFancy` is explicit. That's what `.` does and the
object to the left of the period is the object you want to look up the method on.
`unicorn`”. In this case, the fact that you want to look up a *method*
`isFancy` and not a *variable* `isFancy` is explicit. That's what `.` does and
the object to the left of the period is the object you want to look up the
method on.
### `this`