summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/orm/sync.py
diff options
context:
space:
mode:
authorDiana Clarke <diana.joan.clarke@gmail.com>2011-02-28 13:17:46 -0500
committerDiana Clarke <diana.joan.clarke@gmail.com>2011-02-28 13:17:46 -0500
commit13242f766eb5063a789937e2d56089207426dba0 (patch)
tree4a599c8e3ce5a887581bbe6b1fb178a696d38827 /lib/sqlalchemy/orm/sync.py
parent62c545108d97ebe98731204b1de90e9abe2025b7 (diff)
downloadsqlalchemy-13242f766eb5063a789937e2d56089207426dba0.tar.gz
corrected a bunch of spelling typos
Diffstat (limited to 'lib/sqlalchemy/orm/sync.py')
-rw-r--r--lib/sqlalchemy/orm/sync.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/orm/sync.py b/lib/sqlalchemy/orm/sync.py
index 60a8bcb9a..15d35d2a5 100644
--- a/lib/sqlalchemy/orm/sync.py
+++ b/lib/sqlalchemy/orm/sync.py
@@ -31,7 +31,7 @@ def populate(source, source_mapper, dest, dest_mapper,
except exc.UnmappedColumnError:
_raise_col_to_prop(True, source_mapper, l, dest_mapper, r)
- # techically the "r.primary_key" check isn't
+ # technically the "r.primary_key" check isn't
# needed here, but we check for this condition to limit
# how often this logic is invoked for memory/performance
# reasons, since we only need this info for a primary key