Skip to content

Commit

Permalink
Documentation update, incorrect imports, version bump.
Browse files Browse the repository at this point in the history
  • Loading branch information
wehriam committed Dec 21, 2010
1 parent efe965e commit 0f35fb6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.mkd
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand All @@ -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()
Expand All @@ -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()
Expand Down

0 comments on commit 0f35fb6

Please sign in to comment.