@@ -17,7 +17,7 @@ SQLite for internal data storage. It's also possible to prototype an
1717application using SQLite and then port the code to a larger database such as
1818PostgreSQL or Oracle.
1919
20- The sqlite3 module was written by Gerhard Häring. It provides a SQL interface
20+ The sqlite3 module was written by Gerhard Häring. It provides an SQL interface
2121compliant with the DB-API 2.0 specification described by :pep: `249 `.
2222
2323To use the module, start by creating a :class: `Connection ` object that
@@ -332,7 +332,7 @@ Connection Objects
332332
333333.. class :: Connection
334334
335- A SQLite database connection has the following attributes and methods:
335+ An SQLite database connection has the following attributes and methods:
336336
337337 .. attribute :: isolation_level
338338
@@ -534,7 +534,7 @@ Connection Objects
534534
535535 .. method :: load_extension(path)
536536
537- This routine loads a SQLite extension from a shared library. You have to
537+ This routine loads an SQLite extension from a shared library. You have to
538538 enable extension loading with :meth: `enable_load_extension ` before you can
539539 use this routine.
540540
@@ -605,7 +605,7 @@ Connection Objects
605605
606606 .. method :: backup(target, *, pages=-1, progress=None, name="main", sleep=0.250)
607607
608- This method makes a backup of a SQLite database even while it's being accessed
608+ This method makes a backup of an SQLite database even while it's being accessed
609609 by other clients, or concurrently by the same connection. The copy will be
610610 written into the mandatory argument *target *, that must be another
611611 :class: `Connection ` instance.
@@ -965,7 +965,7 @@ This is how SQLite types are converted to Python types by default:
965965+-------------+----------------------------------------------+
966966
967967The type system of the :mod: `sqlite3 ` module is extensible in two ways: you can
968- store additional Python types in a SQLite database via object adaptation, and
968+ store additional Python types in an SQLite database via object adaptation, and
969969you can let the :mod: `sqlite3 ` module convert SQLite types to different Python
970970types via converters.
971971
0 commit comments