8000 fixing typo in db section · jolly97/fullstackpython.com@168a83a · GitHub
[go: up one dir, main page]

Skip to content

Commit 168a83a

Browse files
committed
fixing typo in db section
1 parent 59cab28 commit 168a83a

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

databases.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,8 @@ <h2>Connecting to a database with Python</h2>
128128
</div>
129129
<div class="section" id="object-relational-mapping">
130130
<h2>Object-Relational Mapping</h2>
131-
<p>Object-relational mappers (ORMs) allow developers to access data from a
132-
backend by writing with Python code instead of SQL queries. Each web
131+
<p>Object-Relational mappers (ORMs) allow developers to access data from a
132+
backend by writing Python code instead of SQL queries. Each web
133133
application framework handles integrating ORMs differently.</p>
134134
<p>Django provides an ORM with its core functionality. Flask leaves using an
135135
ORM up to an extension, such as

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>2014-02-10T08:09:39Z</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>2014-02-10T08:11:48Z</updated></feed>

source/content/pages/databases.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ single file-based database.
7979
-------------------------
8080
Object-Relational Mapping
8181
-------------------------
82-
Object-relational mappers (ORMs) allow developers to access data from a
83-
backend by writing with Python code instead of SQL queries. Each web
82+
Object-Relational mappers (ORMs) allow developers to access data from a
83+
backend by writing Python code instead of SQL queries. Each web
8484
application framework handles integrating ORMs differently.
8585

8686
Django provides an ORM with its core functionality. Flask leaves using an

0 commit comments

Comments
 (0)
0