Skip to content

Commit

Permalink
Updated README to reflect actual syntax as implemented
Browse files Browse the repository at this point in the history
  • Loading branch information
jasford committed Jan 13, 2010
1 parent 0d5dcfa commit 6f7998b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitignore
@@ -1 +1 @@
*.pyc
*.pyc
4 changes: 2 additions & 2 deletions README.markdown
Expand Up @@ -57,7 +57,7 @@ Connect to CheddarGetter
Get a customer data

>>> customer_list = cheddar.get_customers();
>>> one_specific_customer = chedddar.get_customer('EXAMPLE_CUSTOMER')
>>> one_specific_customer = chedddar.get_customer(code='EXAMPLE_CUSTOMER')

Create a new customer

Expand All @@ -75,7 +75,7 @@ Create a new customer
'ccZip': '90210',
}
}
>>> customer = cheddar.new_customer(data)
>>> customer = cheddar.new_customer(**data)


How does it work?
Expand Down

0 comments on commit 6f7998b

Please sign in to comment.