Skip to content

Commit b0a1e6a

Browse files
author
Kenneth Reitz
committed
Merge pull request realpython#219 from t-8ch/fix_typos
Fix some typos
2 parents fc7fba0 + 2210172 commit b0a1e6a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/dev/env.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ It has:
7474
- Virtual env support;
7575
- Search by python documentation and run python code;
7676
- More other things like auto pep8 error fixes;
77-
- Very customizable an documented as well;
77+
- Very customizable and documented as well;
7878
- Have all required libraries in self;
7979

8080
And more stuff.

docs/scenarios/web.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ support for Python 2.7 applications.
164164
Heroku allows you to run as many Python web applications as you like, 24/7 and
165165
free of charge. Heroku is best described as a horizontal scaling platform. They
166166
start 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

169169
Heroku publishes `step-by-step instructions
170170
<http://devcenter.heroku.com/articles/python>`_ on how to set up your first
@@ -212,18 +212,18 @@ Templating
212212
Most WSGI applications are responding to HTTP requests to serve
213213
content in HTML or other markup languages. Instead of generating directly
214214
textual 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
216216
template files, with a system of hierarchy and inclusion to
217217
avoid unnecessary repetition, and is in charge of rendering
218218
(generating) the actual content, filling the static content
219219
of the templates with the dynamic content generated by the
220220
application.
221221

222222
As template files are
223-
sometime written by designers or front-end developpers,
223+
sometimes written by designers or front-end developers,
224224
it 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
227227
application passing dynamic content to the template engine,
228228
and 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

Comments
 (0)