diff options
author | Matthias Urlichs <matthias@urlichs.de> | 2014-05-11 16:49:56 +0200 |
---|---|---|
committer | Matthias Urlichs <matthias@urlichs.de> | 2014-05-11 16:49:56 +0200 |
commit | f341cfbfe117e777569d58eb6d2c3d3f7fe7bbf3 (patch) | |
tree | c9a4a7d1d416c191d502de7dd56613c6f1d64783 /lib/sqlalchemy/orm/events.py | |
parent | 55eacc8dbea3c3f98197bde9034fd6558fb2bc09 (diff) | |
download | sqlalchemy-pr/91.tar.gz |
Documentation fix-up: "its" vs. "it's"pr/91
Removed ungrammatical apostrophes from documentation, replacing
"it's" with "its" where appropriate (but in a few cases with "it is"
when that read better).
While doing that, I also fixed a couple of minor typos etc.
as I noticed them.
Diffstat (limited to 'lib/sqlalchemy/orm/events.py')
-rw-r--r-- | lib/sqlalchemy/orm/events.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/sqlalchemy/orm/events.py b/lib/sqlalchemy/orm/events.py index 6bc6b17ff..996e04edb 100644 --- a/lib/sqlalchemy/orm/events.py +++ b/lib/sqlalchemy/orm/events.py @@ -213,7 +213,7 @@ class InstanceEvents(event.Events): """ def init(self, target, args, kwargs): - """Receive an instance when it's constructor is called. + """Receive an instance when its constructor is called. This method is only called during a userland construction of an object. It is not called when an object is loaded from the @@ -222,7 +222,7 @@ class InstanceEvents(event.Events): """ def init_failure(self, target, args, kwargs): - """Receive an instance when it's constructor has been called, + """Receive an instance when its constructor has been called, and raised an exception. This method is only called during a userland construction of @@ -316,7 +316,7 @@ class InstanceEvents(event.Events): """ def unpickle(self, target, state_dict): - """Receive an object instance after it's associated state has + """Receive an object instance after its associated state has been unpickled. :param target: the mapped instance. If |