Skip to content

Commit

Permalink
review typos
Browse files Browse the repository at this point in the history
  • Loading branch information
hugo-gomes authored Oct 13, 2023
1 parent 0db4709 commit e3f283e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/app.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ class HelloApp(appier.App):

The basic `App` should seldom be inherited from, instead opt for inheriting from `APIApp`
or `WebApp`, depending on whether you're building just an API or a complete Web App with
an user interface. These will provide default behaviours that are more appropriate to each
a user interface. These will provide default behaviours that are more appropriate to each
scenario. For example, by inheriting from `WebApp` instead, the following behaviours are
done by default:

* Provide a default handler for the index route, so that the developer can visit the app
through the browser the moment he launches it (without writing any handlers yet).
* Redirects the user to the login page when acess is denied to a particular resource.
* Redirects the user to the login page when access is denied to a particular resource.
* Provides a default HTML error page.
* Defaults 'service' to False.

0 comments on commit e3f283e

Please sign in to comment.