spelling correction
authorRalph Ronnquist <ralph.ronnquist@gmail.com>
Fri, 8 Jul 2022 05:15:09 +0000 (15:15 +1000)
committerRalph Ronnquist <ralph.ronnquist@gmail.com>
Fri, 8 Jul 2022 05:15:09 +0000 (15:15 +1000)
vector/relation.c
vector/relation.h

index 8ab343f6cb739104768bd02116a5472f9ce8dfee..e7469de74b203b3b56ef8f6d45a2f9329bfa6f91 100644 (file)
@@ -27,7 +27,7 @@ relation *relation_create(tupleschema *schema) {
 // Add an indexing hashvector to the relation using the nominated
 // column indexes being the value part. the key must be a clone of the
 // relation columns but with some columns reset.
-int relation_add_contraint(relation *r,tupleschema *key) {
+int relation_add_constraint(relation *r,tupleschema *key) {
     tupleschema *primary = (tupleschema *) r->content.type;
     if ( primary->arity != key->arity ) {
        return -1; // no good
index e66d5706c17ac5a78ba7f0c7845c6f84d4978f97..f76f1bb4fa3976bba435477c13871e6e34be13d8 100644 (file)
@@ -72,7 +72,7 @@ extern relation *relation_create(tupleschema *schema);
  * \see tupleschema_mask, relation_add
  * \related relation
  */
-extern int relation_add_contraint(relation *r,tupleschema *key);
+extern int relation_add_constraint(relation *r,tupleschema *key);
 
 /**
  * \brief Add the tuple to the relation.