Skip to content

Commit cd4a9c2

Browse files
committed
lots of typo fixing
1 parent 0c39fdc commit cd4a9c2

File tree

8 files changed

+19
-19
lines changed

8 files changed

+19
-19
lines changed

all.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4370,7 +4370,7 @@ <h1>Platform-as-a-service</h1>
43704370
an application to a server or IaaS.</p>
43714371
<p>A PaaS makes deployment and operations easier because it forces the developer
43724372
to conform applications to the PaaS architecture. For example, Heroku looks
4373-
for Python's requirements.txt file in the base directory of the repository
4373+
for Python's <code>requirements.txt</code> file in the base directory of the repository
43744374
during deployment because that is the file's de facto community standard
43754375
location.</p>
43764376
<p><img src="theme/img/servers-versus-paas.png" width="100%" alt="Traditional LAMP server stack versus a Platform-as-a-Service stack" class="technical-diagram" /></p>
@@ -4631,7 +4631,7 @@ <h2>Client requests</h2>
46314631
<li>headless browser, commonly use for testing, such as
46324632
<a href="http://phantomjs.org/">phantomjs</a></li>
46334633
<li>commandline utility, for example <a href="https://www.gnu.org/software/wget/">wget</a>
4634-
and <a href="http://curl.haxx.se/">curl</a></li>
4634+
and <a href="http://curl.haxx.se/">cURL</a></li>
46354635
<li>text-based web browser such as
46364636
<a href="http://lynx.browser.org/">Lynx</a></li>
46374637
<li>web crawler. </li>
@@ -5196,10 +5196,10 @@ <h2>Installing Python dependencies</h2>
51965196
<a href="https://pypi.python.org/pypi">PyPi</a> repository. </p>
51975197
<h2>requirements.txt</h2>
51985198
<p>The pip convention for specifying application dependencies is with a
5199-
requirements.txt file. When you build a Python web application you
5200-
should include a requirements.txt file. </p>
5201-
<p>Python projects' dependencies for a web application should be specified in the
5202-
requirements.txt with pegged dependencies like the following:</p>
5199+
<code>requirements.txt</code> file. When you build a Python web application you
5200+
should include <code>requirements.txt</code> in the base directory of your project.</p>
5201+
<p>Python projects' dependencies for a web application should be specified
5202+
with pegged dependencies like the following:</p>
52035203
<div class="highlight"><pre>django==1.6
52045204
bpython==0.12
52055205
django-braces==0.2.1

application-dependencies.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,10 +95,10 @@ <h2>Installing Python dependencies</h2>
9595
<a href="https://pypi.python.org/pypi">PyPi</a> repository. </p>
9696
<h2>requirements.txt</h2>
9797
<p>The pip convention for specifying application dependencies is with a
98-
requirements.txt file. When you build a Python web application you
99-
should include a requirements.txt file. </p>
100-
<p>Python projects' dependencies for a web application should be specified in the
101-
requirements.txt with pegged dependencies like the following:</p>
98+
<code>requirements.txt</code> file. When you build a Python web application you
99+
should include <code>requirements.txt</code> in the base directory of your project.</p>
100+
<p>Python projects' dependencies for a web application should be specified
101+
with pegged dependencies like the following:</p>
102102
<div class="highlight"><pre>django==1.6
103103
bpython==0.12
104104
django-braces==0.2.1

feeds/all.atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2015-07-24T08:43:38Z</updated></feed>
2+
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2015-07-24T17:49:05Z</updated></feed>

platform-as-a-service.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ <h1>Platform-as-a-service</h1>
4747
an application to a server or IaaS.</p>
4848
<p>A PaaS makes deployment and operations easier because it forces the developer
4949
to conform applications to the PaaS architecture. For example, Heroku looks
50-
for Python's requirements.txt file in the base directory of the repository
50+
for Python's <code>requirements.txt</code> file in the base directory of the repository
5151
during deployment because that is the file's de facto community standard
5252
location.</p>
5353
<p><img src="theme/img/servers-versus-paas.png" width="100%" alt="Traditional LAMP server stack versus a Platform-as-a-Service stack" class="technical-diagram" /></p>

source/content/pages/07-web-app-deployment/04-platform-as-a-service.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ an application to a server or IaaS.
2121

2222
A PaaS makes deployment and operations easier because it forces the developer
2323
to conform applications to the PaaS architecture. For example, Heroku looks
24-
for Python's requirements.txt file in the base directory of the repository
24+
for Python's `requirements.txt` file in the base directory of the repository
2525
during deployment because that is the file's de facto community standard
2626
location.
2727

source/content/pages/07-web-app-deployment/06-web-servers.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ as Internet Explorer, Firefox, or Chrome, but it can also be a
3333
* headless browser, commonly use for testing, such as
3434
[phantomjs](http://phantomjs.org/)
3535
* commandline utility, for example [wget](https://www.gnu.org/software/wget/)
36-
and [curl](http://curl.haxx.se/)
36+
and [cURL](http://curl.haxx.se/)
3737
* text-based web browser such as
3838
[Lynx](http://lynx.browser.org/)
3939
* web crawler.

source/content/pages/07-web-app-deployment/09-app-dependencies.markdown

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,11 @@ Pip downloads and installs application dependencies from the central
7474

7575
## requirements.txt
7676
The pip convention for specifying application dependencies is with a
77-
requirements.txt file. When you build a Python web application you
78-
should include a requirements.txt file.
77+
`requirements.txt` file. When you build a Python web application you
78+
should include `requirements.txt` in the base directory of your project.
7979

80-
Python projects' dependencies for a web application should be specified in the
81-
requirements.txt with pegged dependencies like the following:
80+
Python projects' dependencies for a web application should be specified
81+
with pegged dependencies like the following:
8282

8383
django==1.6
8484
bpython==0.12

web-servers.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ <h2>Client requests</h2>
5858
<li>headless browser, commonly use for testing, such as
5959
<a href="http://phantomjs.org/">phantomjs</a></li>
6060
<li>commandline utility, for example <a href="https://www.gnu.org/software/wget/">wget</a>
61-
and <a href="http://curl.haxx.se/">curl</a></li>
61+
and <a href="http://curl.haxx.se/">cURL</a></li>
6262
<li>text-based web browser such as
6363
<a href="http://lynx.browser.org/">Lynx</a></li>
6464
<li>web crawler. </li>

0 commit comments

Comments
 (0)