diff --git a/README.mkd b/README.mkd index 182e9a5..57a1a83 100644 --- a/README.mkd +++ b/README.mkd @@ -43,7 +43,7 @@ Cassorm offers three main data types. The first is a model based on [Pycassa's C f = cassorm.IntString() g = cassorm.String() -To create the schema, use the "sync" command. This only needs to be done +To create the schema, use the "sync" method. This only needs to be done once per column family. TestModel.sync() @@ -61,7 +61,7 @@ Basic Usage, Lists class TestList(CassandraList): # Column Family will be 'testlist' pass -To create the schema, use the "sync" command. This only needs to be done +To create the schema, use the "sync" method. This only needs to be done once per column family. TestList.sync() @@ -81,7 +81,7 @@ Basic Usage, Dictionaries class TestDict(CassandraDict): # Column Family will be 'testdict' pass -To create the schema, use the "sync" command. This only needs to be done +To create the schema, use the "sync" method. This only needs to be done once per column family. TestDict.sync()