From dc5c07d6551ad2bd91d01428a7c2601772706032 Mon Sep 17 00:00:00 2001 From: Dag Wieers Date: Thu, 26 May 2016 13:48:08 +0200 Subject: Fix small typo in documentation --- sqlparse/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sqlparse') 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. """ -- cgit v1.2.1