Skip to content

Commit

Permalink
changed unordered to ordered list
Browse files Browse the repository at this point in the history
  • Loading branch information
tsilva committed Nov 11, 2014
1 parent 7b96c20 commit 26dce48
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions doc/structure.md
Expand Up @@ -73,10 +73,10 @@ For more details, check out the [Models](doc/models.md) documentation.
Controllers are the bridge from the outside world to the app. They define handlers that listen to requested
URLs, perform logic, and return a response. Typically an handler upon receiving a request will do the following:

* Retrieve entities (instances of a model stored in the data source)
* Invoke their logic (application logic should be encapsulated in the model files)
* Process a template using the retrieved entities
* Return the result of that template having been processed as the response
- Retrieve entities (instances of a model stored in the data source)
- Invoke their logic (application logic should be encapsulated in the model files)
- Process a template using the retrieved entities
- Return the result of that template having been processed as the response

Controllers are kept in the `controllers` folder, in the root of the project (the `controllers` folder is
in the same place as the `hello.py` file), with one file defining each controller. A `CatController`
Expand Down

0 comments on commit 26dce48

Please sign in to comment.