Skip to content

Commit eed4172

Browse files
committed
Grammar fixes
1 parent e0d9bb1 commit eed4172

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1820,7 +1820,7 @@ def write_to_csv_file(filename, rows):
18201820

18211821
SQLite
18221822
------
1823-
**Server-less database engine that stores each database into separate file.**
1823+
**Server-less database engine that stores each database into a separate file.**
18241824

18251825
### Connect
18261826
**Opens a connection to the database file. Creates a new file if path doesn't exist.**

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1628,7 +1628,7 @@
16281628
writer.writerows(rows)
16291629
</code></pre></div>
16301630

1631-
<div><h2 id="sqlite"><a href="#sqlite" name="sqlite">#</a>SQLite</h2><p><strong>Server-less database engine that stores each database into separate file.</strong></p><div><h3 id="connect">Connect</h3><p><strong>Opens a connection to the database file. Creates a new file if path doesn't exist.</strong></p><pre><code class="python language-python hljs"><span class="hljs-keyword">import</span> sqlite3
1631+
<div><h2 id="sqlite"><a href="#sqlite" name="sqlite">#</a>SQLite</h2><p><strong>Server-less database engine that stores each database into a separate file.</strong></p><div><h3 id="connect">Connect</h3><p><strong>Opens a connection to the database file. Creates a new file if path doesn't exist.</strong></p><pre><code class="python language-python hljs"><span class="hljs-keyword">import</span> sqlite3
16321632
db = sqlite3.connect(<span class="hljs-string">'&lt;path&gt;'</span>) <span class="hljs-comment"># Also ':memory:'.</span>
16331633
...
16341634
db.close()

0 commit comments

Comments
 (0)