Skip to content

Commit 261c359

Browse files
committed
fixed a typo and a broken link
1 parent 0fd0ba5 commit 261c359

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tutorials/sqlite3_howto/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ _\-- written by Sebastian Raschka_ on March 7, 2014
2929
• Conclusion
3030

3131
The complete Python code that I am using in this tutorial can be downloaded
32-
from my GitHub repository: [https://github.com/rasbt/python_reference/tutorials/sqlite3_howto](https://github.com/rasbt/python_reference/tutorials/sqlite3_howto)
32+
from my GitHub repository: [https://github.com/rasbt/python_reference/tree/master/tutorials/sqlite3_howto](https://github.com/rasbt/python_reference/tree/master/tutorials/sqlite3_howto)
3333

3434

3535
* * *
@@ -97,7 +97,7 @@ there is more information about PRIMARY KEYs further down in this section).
9797

9898

9999

100-
mport sqlite3
100+
import sqlite3
101101

102102
sqlite_file = 'my_first_db.sqlite' # name of the sqlite database file
103103
table_name1 = 'my_table_1' # name of the table to be created

0 commit comments

Comments
 (0)