summaryrefslogtreecommitdiff
path: root/lib/sql.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sql.py')
-rw-r--r--lib/sql.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/sql.py b/lib/sql.py
index b465cbe..fc946b5 100644
--- a/lib/sql.py
+++ b/lib/sql.py
@@ -72,9 +72,9 @@ class Composed(Composable):
"""
A `Composable` object obtained concatenating a sequence of `Composable`.
- The object is usually created using `compose()` and the `Composable`
- operators. However it is possible to create a `!Composed` directly
- specifying a sequence of `Composable` as arguments.
+ The object is usually created using `Composable` operators. However it is
+ possible to create a `!Composed` directly specifying a sequence of
+ `Composable` as arguments.
Example::
@@ -230,7 +230,7 @@ class Identifier(Composable):
class Literal(Composable):
"""
- Represent an SQL value to be included in a query.
+ A `Composable` representing an SQL value to include in a query.
Usually you will want to include placeholders in the query and pass values
as `~cursor.execute()` arguments. If however you really really need to