Skip to content

Commit 3c38d54

Browse files
committed
fixing typo on nosql page
1 parent 01b6687 commit 3c38d54

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

all.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3063,7 +3063,7 @@ <h2>Connecting to a database with Python</h2>
30633063
<p><a href="http://initd.org/psycopg/">psycopg2</a> for PostgreSQL</p>
30643064
</li>
30653065
<li>
3066-
<p><a href="https://pypi.python.org/pypi/MySQL-python/1.2.4">MySQLdb</a> for MySQL</p>
3066+
<p><a href="https://pypi.python.org/pypi/MySQL-python/1.2.5">MySQLdb</a> for MySQL</p>
30673067
</li>
30683068
<li>
30693069
<p><a href="http://cx-oracle.sourceforge.net/">cx_Oracle</a> for Oracle</p>
@@ -3237,7 +3237,7 @@ <h3>Document-oriented data stores</h3>
32373237
data store with a Binary Object Notation (BSON) storage format that is
32383238
JSON-style and familiar to web developers.
32393239
<a href="http://docs.mongodb.org/ecosystem/drivers/python/">PyMongo</a> is a
3240-
are commonly used client for interfacing with one or more MongoDB
3240+
commonly used client for interfacing with one or more MongoDB
32413241
instances through Python code. <a href="http://mongoengine.org/">MongoEngine</a>
32423242
is a Python ORM specifically written for MongoDB that is built on top
32433243
of PyMongo.</p>

databases.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ <h2>Connecting to a database with Python</h2>
166166
<p><a href="http://initd.org/psycopg/">psycopg2</a> for PostgreSQL</p>
167167
</li>
168168
<li>
169-
<p><a href="https://pypi.python.org/pypi/MySQL-python/1.2.4">MySQLdb</a> for MySQL</p>
169+
<p><a href="https://pypi.python.org/pypi/MySQL-python/1.2.5">MySQLdb</a> for MySQL</p>
170170
</li>
171171
<li>
172172
<p><a href="http://cx-oracle.sourceforge.net/">cx_Oracle</a> for Oracle</p>

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

no-sql-datastore.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ <h3>Document-oriented data stores</h3>
109109
data store with a Binary Object Notation (BSON) storage format that is
110110
JSON-style and familiar to web developers.
111111
<a href="http://docs.mongodb.org/ecosystem/drivers/python/">PyMongo</a> is a
112-
are commonly used client for interfacing with one or more MongoDB
112+
commonly used client for interfacing with one or more MongoDB
113113
instances through Python code. <a href="http://mongoengine.org/">MongoEngine</a>
114114
is a Python ORM specifically written for MongoDB that is built on top
115115
of PyMongo.</p>

source/content/pages/05-data/02-databases.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ library. The most common libraries for relational databases are:
134134

135135
* [psycopg2](http://initd.org/psycopg/) for PostgreSQL
136136

137-
* [MySQLdb](https://pypi.python.org/pypi/MySQL-python/1.2.4) for MySQL
137+
* [MySQLdb](https://pypi.python.org/pypi/MySQL-python/1.2.5) for MySQL
138138

139139
* [cx\_Oracle](http://cx-oracle.sourceforge.net/) for Oracle
140140

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ nested data.
7676
data store with a Binary Object Notation (BSON) storage format that is
7777
JSON-style and familiar to web developers.
7878
[PyMongo](http://docs.mongodb.org/ecosystem/drivers/python/) is a
79-
are commonly used client for interfacing with one or more MongoDB
79+
commonly used client for interfacing with one or more MongoDB
8080
instances through Python code. [MongoEngine](http://mongoengine.org/)
8181
is a Python ORM specifically written for MongoDB that is built on top
8282
of PyMongo.

0 commit comments

Comments
 (0)