diff options
| author | Andi Albrecht <albrecht.andi@gmail.com> | 2016-05-28 14:39:07 +0200 |
|---|---|---|
| committer | Andi Albrecht <albrecht.andi@gmail.com> | 2016-05-28 14:39:07 +0200 |
| commit | f25f3cfc7273aea0b3db31f4e6bb681fc715b503 (patch) | |
| tree | 59423e1b3c92d859903b88a6a082af2a34416412 /sqlparse | |
| parent | 06921120db8b94ec76d31d6af9e8a2498a6dc68c (diff) | |
| parent | dc5c07d6551ad2bd91d01428a7c2601772706032 (diff) | |
| download | sqlparse-f25f3cfc7273aea0b3db31f4e6bb681fc715b503.tar.gz | |
Merge pull request #239 from dagwieers/patch-1
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. """ |
