From: Gaƫtan de Menten Date: Fri, 18 May 2007 18:26:46 +0000 (+0000) Subject: correct typo X-Git-Tag: rel_0_3_8~38 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aeecb08490a44f86bd1c115864f1781c24018f07;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git correct typo --- diff --git a/doc/build/content/adv_datamapping.txt b/doc/build/content/adv_datamapping.txt index a905024d02..fa47291b96 100644 --- a/doc/build/content/adv_datamapping.txt +++ b/doc/build/content/adv_datamapping.txt @@ -913,10 +913,10 @@ Mappers can have functionality augmented or replaced at many points in its execu this is a good place to set up primary key values and such that arent handled otherwise.""" return EXT_PASS def before_update(self, mapper, connection, instance): - """called before an object instnace is UPDATED""" + """called before an object instance is UPDATED""" return EXT_PASS def after_update(self, mapper, connection, instance): - """called after an object instnace is UPDATED""" + """called after an object instance is UPDATED""" return EXT_PASS def after_insert(self, mapper, connection, instance): """called after an object instance has been INSERTed"""