From 5af78e2946fe9bbda49bb75fd892dbfc389ba976 Mon Sep 17 00:00:00 2001 From: Michael Trier Date: Thu, 3 Jul 2008 04:38:28 +0000 Subject: [PATCH] Fixed typo where plugins docs were referencing synonyn_for instead of synonym_for. Closes #1029 --- doc/build/content/plugins.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.47.3