From 0f35fb6739f073c32cbb8d778580b392035651b6 Mon Sep 17 00:00:00 2001 From: John Wehr Date: Tue, 21 Dec 2010 08:07:44 -0500 Subject: [PATCH] Documentation update, incorrect imports, version bump. --- README.mkd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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()