Skip to content

Commit dc5c07d

Browse files
committed
Fix small typo in documentation
1 parent efb6fd4 commit dc5c07d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

sqlparse/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
def parse(sql, encoding=None):
2121
"""Parse sql and return a list of statements.
2222
23-
:param sql: A string containting one or more SQL statements.
23+
:param sql: A string containing one or more SQL statements.
2424
:param encoding: The encoding of the statement (optional).
2525
:returns: A tuple of :class:`~sqlparse.sql.Statement` instances.
2626
"""
@@ -60,7 +60,7 @@ def format(sql, **options):
6060
def split(sql, encoding=None):
6161
"""Split *sql* into single statements.
6262
63-
:param sql: A string containting one or more SQL statements.
63+
:param sql: A string containing one or more SQL statements.
6464
:param encoding: The encoding of the statement (optional).
6565
:returns: A list of strings.
6666
"""

0 commit comments

Comments
 (0)