Skip to content

Commit 5b45b79

Browse files
committed
fix typos
1 parent 3c38d54 commit 5b45b79

File tree

9 files changed

+16
-16
lines changed

9 files changed

+16
-16
lines changed

all.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1395,7 +1395,7 @@ <h2>Django books and tutorials</h2>
13951395
</li>
13961396
<li>
13971397
<p><a href="http://programming.oreilly.com/2014/04/simplifying-django.html">Lightweight Django</a>
1398-
has several nice examples for breaking Django into smaller simplier
1398+
has several nice examples for breaking Django into smaller simpler
13991399
components.</p>
14001400
</li>
14011401
<li>
@@ -3264,8 +3264,8 @@ <h3>Document-oriented data store resources</h3>
32643264
<ol>
32653265
<li><a href="http://emptysqua.re/blog/good-idea-at-the-time-pymongo-start-request/">start_request</a></li>
32663266
<li><a href="http://emptysqua.re/blog/it-seemed-like-a-good-idea-at-the-time-pymongo-use-greenlets/">use_greenlets</a></li>
3267-
<li><a href="http://emptysqua.re/blog/good-idea-at-the-time-pymongo-copy-database/">"copy_database"</a></li>
3268-
<li>The final post will cover MongoReplicaSetClient. </li>
3267+
<li><a href="http://emptysqua.re/blog/good-idea-at-the-time-pymongo-copy-database/">copy_database</a></li>
3268+
<li><a href="http://emptysqua.re/blog/good-idea-at-the-time-pymongo-mongoreplicasetclient/">MongoReplicaSetClient</a></li>
32693269
</ol>
32703270
</li>
32713271
</ul>
@@ -3283,7 +3283,7 @@ <h3>Column-family table data stores</h3>
32833283
</li>
32843284
</ul>
32853285
<h2>Graph</h2>
3286-
<p>A graph database represents and stores data in three aspects: nodes, edges,
3286+
<p>A graph database represents and stores data in three aspects: nodes, edges
32873287
and properties. </p>
32883288
<p>A <em>node</em> is an entity, such as a person or business. </p>
32893289
<p>An <em>edge</em> is the relationship between two entities. For example, an
@@ -3462,7 +3462,7 @@ <h3>Potential for reduced performance</h3>
34623462
section. In large projects ORMs are good enough for roughly 80-90% of use
34633463
cases but in 10-20% of a project's database interactions there can be
34643464
major performance improvements by having a knowledgeable database
3465-
adminstrator write tuned SQL statements to replace the ORM's generated
3465+
administrator write tuned SQL statements to replace the ORM's generated
34663466
SQL code.</p>
34673467
<h3>Shifting complexity from the database into the app code</h3>
34683468
<p>The code for working with an application's data has to live somewhere. Before

django.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ <h2>Django books and tutorials</h2>
140140
</li>
141141
<li>
142142
<p><a href="http://programming.oreilly.com/2014/04/simplifying-django.html">Lightweight Django</a>
143-
has several nice examples for breaking Django into smaller simplier
143+
has several nice examples for breaking Django into smaller simpler
144144
components.</p>
145145
</li>
146146
<li>

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-22T17:52:23Z</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-23T09:23:56Z</updated></feed>

no-sql-datastore.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,8 @@ <h3>Document-oriented data store resources</h3>
136136
<ol>
137137
<li><a href="http://emptysqua.re/blog/good-idea-at-the-time-pymongo-start-request/">start_request</a></li>
138138
<li><a href="http://emptysqua.re/blog/it-seemed-like-a-good-idea-at-the-time-pymongo-use-greenlets/">use_greenlets</a></li>
139-
<li><a href="http://emptysqua.re/blog/good-idea-at-the-time-pymongo-copy-database/">"copy_database"</a></li>
140-
<li>The final post will cover MongoReplicaSetClient. </li>
139+
<li><a href="http://emptysqua.re/blog/good-idea-at-the-time-pymongo-copy-database/">copy_database</a></li>
140+
<li><a href="http://emptysqua.re/blog/good-idea-at-the-time-pymongo-mongoreplicasetclient/">MongoReplicaSetClient</a></li>
141141
</ol>
142142
</li>
143143
</ul>
@@ -155,7 +155,7 @@ <h3>Column-family table data stores</h3>
155155
</li>
156156
</ul>
157157
<h2>Graph</h2>
158-
<p>A graph database represents and stores data in three aspects: nodes, edges,
158+
<p>A graph database represents and stores data in three aspects: nodes, edges
159159
and properties. </p>
160160
<p>A <em>node</em> is an entity, such as a person or business. </p>
161161
<p>An <em>edge</em> is the relationship between two entities. For example, an

object-relational-mappers-orms.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ <h3>Potential for reduced performance</h3>
126126
section. In large projects ORMs are good enough for roughly 80-90% of use
127127
cases but in 10-20% of a project's database interactions there can be
128128
major performance improvements by having a knowledgeable database
129-
adminstrator write tuned SQL statements to replace the ORM's generated
129+
administrator write tuned SQL statements to replace the ORM's generated
130130
SQL code.</p>
131131
<h3>Shifting complexity from the database into the app code</h3>
132132
<p>The code for working with an application's data has to live somewhere. Before
Binary file not shown.

source/content/pages/04-web-development/02-django.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ as of Django 1.7.
112112
built with Python 3.
113113

114114
* [Lightweight Django](http://programming.oreilly.com/2014/04/simplifying-django.html)
115-
has several nice examples for breaking Django into smaller simplier
115+
has several nice examples for breaking Django into smaller simpler
116116
components.
117117

118118
* The [Definitive Guide to Django Deployment](https://github.com/rogueleaderr/definitive_guide_to_django_deployment)

source/content/pages/05-data/03-nosql.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ nested data.
9696
from building the widely-used Python MongoDB driver.
9797
1. [start\_request](http://emptysqua.re/blog/good-idea-at-the-time-pymongo-start-request/)
9898
1. [use\_greenlets](http://emptysqua.re/blog/it-seemed-like-a-good-idea-at-the-time-pymongo-use-greenlets/)
99-
1. ["copy\_database"](http://emptysqua.re/blog/good-idea-at-the-time-pymongo-copy-database/)
100-
1. The final post will cover MongoReplicaSetClient.
99+
1. [copy\_database](http://emptysqua.re/blog/good-idea-at-the-time-pymongo-copy-database/)
100+
1. [MongoReplicaSetClient](http://emptysqua.re/blog/good-idea-at-the-time-pymongo-mongoreplicasetclient/)
101101

102102

103103
## Column-family table
@@ -113,7 +113,7 @@ column family is similar to a table in the relational database model.
113113

114114

115115
## Graph
116-
A graph database represents and stores data in three aspects: nodes, edges,
116+
A graph database represents and stores data in three aspects: nodes, edges
117117
and properties.
118118

119119
A *node* is an entity, such as a person or business.

source/content/pages/05-data/04-object-relational-mappers.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ There's a lot of hand-waving "may or may not" and "potential for" in this
114114
section. In large projects ORMs are good enough for roughly 80-90% of use
115115
cases but in 10-20% of a project's database interactions there can be
116116
major performance improvements by having a knowledgeable database
117-
adminstrator write tuned SQL statements to replace the ORM's generated
117+
administrator write tuned SQL statements to replace the ORM's generated
118118
SQL code.
119119

120120

0 commit comments

Comments
 (0)