Skip to content

Commit 298bcdf

Browse files
committed
updating text on database section
1 parent 3099c9e commit 298bcdf

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

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>2013-11-30T21:45:41Z</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>2013-12-01T13:21:28Z</updated></feed>

index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,8 @@ <h2>Web Server Resources</h2>
302302
<h1>Database</h1>
303303
<p>A database is an abstraction on top of an operating system's file system to
304304
ease creating, reading, updating, and deleting persistent data. The
305-
abstraction is most commonly represented as a set of relational tables.</p>
305+
database storage abstraction most commonly used in Python web development is
306+
sets of relational tables.</p>
306307
<div class="section" id="relational-databases">
307308
<h2>Relational Databases</h2>
308309
<p>Relational databases store all data in a series of tables. Interconnections

pages/database.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ <h1>Database</h1>
5050

5151
<p>A database is an abstraction on top of an operating system's file system to
5252
ease creating, reading, updating, and deleting persistent data. The
53-
abstraction is most commonly represented as a set of relational tables.</p>
53+
database storage abstraction most commonly used in Python web development is
54+
sets of relational tables.</p>
5455
<div class="section" id="relational-databases">
5556
<h2>Relational Databases</h2>
5657
<p>Relational databases store all data in a series of tables. Interconnections

source/content/pages/database.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ Database
77

88
A database is an abstraction on top of an operating system's file system to
99
ease creating, reading, updating, and deleting persistent data. The
10-
abstraction is most commonly represented as a set of relational tables.
10+
database storage abstraction most commonly used in Python web development is
11+
sets of relational tables.
1112

1213
Relational Databases
1314
--------------------

0 commit comments

Comments
 (0)