diff options
Diffstat (limited to 'lib/sqlalchemy/engine')
| -rw-r--r-- | lib/sqlalchemy/engine/strategies.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/engine/strategies.py b/lib/sqlalchemy/engine/strategies.py index 716e5ffb9..e401591b2 100644 --- a/lib/sqlalchemy/engine/strategies.py +++ b/lib/sqlalchemy/engine/strategies.py @@ -13,7 +13,7 @@ class EngineStrategy(object): """defines a function that receives input arguments and produces an instance of sql.Engine, typically an instance sqlalchemy.engine.base.ComposedSQLEngine or a subclass.""" def __init__(self, name): - """constructs a new EngineStrategy object and sets it in the list of available strategies + """construct a new EngineStrategy object and sets it in the list of available strategies under this name.""" self.name = name strategies[self.name] = self |
