README.md in xeroizer-0.2.1 vs README.md in xeroizer-0.2.2
- old
+ new
@@ -255,11 +255,11 @@
contacts = xero.Contact.all(:order => 'Name')
new_contact = xero.Contact.build(:name => 'ABC Development')
saved = new_contact.save
-### \#all(options = {})
+### \#all([options])
Retrieves list of all records with matching options.
**Note:** Some records (Invoice, CreditNote) only return summary information for the contact and no line items
when returning them this list operation. This library takes care of automatically retrieving the
@@ -278,10 +278,10 @@
> **:where**
> __See *Where Filters* section below.__
-### \#first(options = {})
+### \#first([options])
This is a shortcut method for `all` and actually runs all however, this method only returns the
first entry returned by all and never an array.
### \#find(id)