schemas/base.py
changeset 4467 0e73d299730a
parent 4252 6c4f109c2b03
child 4535 71c86a315a9a
--- a/schemas/base.py	Fri Feb 05 11:54:23 2010 +0100
+++ b/schemas/base.py	Fri Feb 05 11:56:57 2010 +0100
@@ -204,7 +204,7 @@
         'delete': ('managers', 'owners'),
         }
     cardinality = '*1'
-    symetric = True
+    symmetric = True
     # NOTE: the 'object = ExternalUri' declaration will still be mandatory
     #       in the cube's schema.
     object = 'ExternalUri'
@@ -234,7 +234,7 @@
 
 class identical_to(RelationType):
     """identical to"""
-    symetric = True
+    symmetric = True
     __permissions__ = {
         'read':   ('managers', 'users', 'guests',),
         # XXX should have update __permissions__ on both subject and object,
@@ -249,7 +249,7 @@
 
 class see_also(RelationType):
     """generic relation to link one entity to another"""
-    symetric = True
+    symmetric = True
     __permissions__ = {
         'read':   ('managers', 'users', 'guests',),
         'add':    ('managers', RRQLExpression('U has_update_permission S'),),