From: Michael Trier Date: Thu, 3 Jul 2008 04:38:28 +0000 (+0000) Subject: Fixed typo where plugins docs were referencing synonyn_for instead of synonym_for... X-Git-Tag: rel_0_5beta2~29 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5af78e2946fe9bbda49bb75fd892dbfc389ba976;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Fixed typo where plugins docs were referencing synonyn_for instead of synonym_for. Closes #1029 --- diff --git a/doc/build/content/plugins.txt b/doc/build/content/plugins.txt index 9dc33d3e22..6e941cb9d4 100644 --- a/doc/build/content/plugins.txt +++ b/doc/build/content/plugins.txt @@ -135,7 +135,7 @@ The above synonym is then usable as an instance attribute as well as a class-lev x.attr = "some value" session.query(MyClass).filter(MyClass.attr == 'some other value').all() -The `synonyn_for` decorator can accomplish the same task: +The `synonym_for` decorator can accomplish the same task: {python} class MyClass(Base): @@ -143,7 +143,7 @@ The `synonyn_for` decorator can accomplish the same task: _attr = Column('attr', String) - @synonyn_for('_attr') + @synonym_for('_attr') @property def attr(self): return self._some_attr