@@ -164,7 +164,7 @@ support for Python 2.7 applications.
164164Heroku allows you to run as many Python web applications as you like, 24/7 and
165165free of charge. Heroku is best described as a horizontal scaling platform. They
166166start to charge you once you "scale" you application to run on more than one
167- Dyno (abstacted servers) at a time.
167+ Dyno (abstracted servers) at a time.
168168
169169Heroku publishes `step-by-step instructions
170170<http://devcenter.heroku.com/articles/python> `_ on how to set up your first
@@ -212,18 +212,18 @@ Templating
212212Most WSGI applications are responding to HTTP requests to serve
213213content in HTML or other markup languages. Instead of generating directly
214214textual content from Python, the concept of separation of concerns
215- advise us to use templates. A template engine manage a suite of
215+ advises us to use templates. A template engine manage a suite of
216216template files, with a system of hierarchy and inclusion to
217217avoid unnecessary repetition, and is in charge of rendering
218218(generating) the actual content, filling the static content
219219of the templates with the dynamic content generated by the
220220application.
221221
222222As template files are
223- sometime written by designers or front-end developpers ,
223+ sometimes written by designers or front-end developers ,
224224it can be difficult to handle increasing complexity.
225225
226- Some general good pratices apply to the part of the
226+ Some general good practices apply to the part of the
227227application passing dynamic content to the template engine,
228228and to the templates themselves.
229229
@@ -233,7 +233,7 @@ and to the templates themselves.
233233 it is easier to add some missing variable when needed than to remove
234234 a likely unused variable later.
235235
236- - Many template engine allow for complex statements
236+ - Many template engines allow for complex statements
237237 or assignments in the template itself, and many
238238 allow some Python code to be evaluated in the
239239 templates. This convenience can lead to uncontrolled
0 commit comments