Skip to content

Commit 2575d3f

Browse files
authored
Merge pull request #17 from ChambersC/patch-1
Update README.md
2 parents c054b99 + d49b31f commit 2575d3f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ Below code are a couple of examples on how to use the Pager:
101101
Pager<Record> pager = vikaApiClient.getRecordApi().getRecords("datasheet_id", 100);
102102

103103
// Iterate through the pages and print out the per record detail
104-
while (pager.hasNext())) {
104+
while (pager.hasNext()) {
105105
for (Record record : pager.next()) {
106106
System.out.println(record.getRecordId() + " -: " + record.getFields());
107107
}

0 commit comments

Comments
 (0)