We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50f5f86 commit 3ebb466Copy full SHA for 3ebb466
1 file changed
README.md
@@ -160,13 +160,13 @@ contact.setName("Stitch Hessian");
160
Contact updated = Contact.update(contact);
161
162
// Read a contact list by email
163
-Contact contacts = Contact.listByEmail("jubal@serenity.io");
+ContactCollection contacts = Contact.listByEmail("jubal@serenity.io");
164
while(contacts.hasNext()) {
165
System.out.println(contacts.next());
166
}
167
168
// Iterate over all contacts
169
-Contact allContacts = Contact.list();
+ContactCollection allContacts = Contact.list();
170
while(allContacts.hasNext()) {
171
System.out.println(allContacts.next());
172
0 commit comments