diff options
| author | Dag Wieers <dag@wieers.com> | 2016-05-26 13:48:08 +0200 |
|---|---|---|
| committer | Dag Wieers <dag@wieers.com> | 2016-05-26 13:48:08 +0200 |
| commit | dc5c07d6551ad2bd91d01428a7c2601772706032 (patch) | |
| tree | 95652dd1636f653db1d4c2bf958574ae106d5fd1 /sqlparse | |
| parent | efb6fd4bdb80b985c356bb6eb996e6e25cf63b05 (diff) | |
| download | sqlparse-dc5c07d6551ad2bd91d01428a7c2601772706032.tar.gz | |
Fix small typo in documentation
Diffstat (limited to 'sqlparse')
| -rw-r--r-- | sqlparse/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sqlparse/__init__.py b/sqlparse/__init__.py index 8ab957a..e5f4f03 100644 --- a/sqlparse/__init__.py +++ b/sqlparse/__init__.py @@ -20,7 +20,7 @@ from sqlparse.compat import u # noqa def parse(sql, encoding=None): """Parse sql and return a list of statements. - :param sql: A string containting one or more SQL statements. + :param sql: A string containing one or more SQL statements. :param encoding: The encoding of the statement (optional). :returns: A tuple of :class:`~sqlparse.sql.Statement` instances. """ @@ -60,7 +60,7 @@ def format(sql, **options): def split(sql, encoding=None): """Split *sql* into single statements. - :param sql: A string containting one or more SQL statements. + :param sql: A string containing one or more SQL statements. :param encoding: The encoding of the statement (optional). :returns: A list of strings. """ |
