docs(hello-world): `app` is now a `Probot` instance

This commit is contained in:
Gregor Martynus 2020-11-12 16:38:38 -08:00
parent 0e52e05319
commit 2fcc0b5c5c
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ module.exports = ({ app }) => {
};
```
The `app` parameter is an instance of [`Application`](https://probot.github.io/api/latest/classes/application.html) and gives you access to all of the GitHub goodness.
The `app` parameter is an instance of [`Probot`](https://probot.github.io/api/latest/classes/probot.html) and gives you access to all of the GitHub goodness.
`app.on` will listen for any [webhook events triggered by GitHub](./webhooks.md), which will notify you when anything interesting happens on GitHub that your app wants to know about.