We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c054b99 + d49b31f commit 2575d3fCopy full SHA for 2575d3f
1 file changed
README.md
@@ -101,7 +101,7 @@ Below code are a couple of examples on how to use the Pager:
101
Pager<Record> pager = vikaApiClient.getRecordApi().getRecords("datasheet_id", 100);
102
103
// Iterate through the pages and print out the per record detail
104
-while (pager.hasNext())) {
+while (pager.hasNext()) {
105
for (Record record : pager.next()) {
106
System.out.println(record.getRecordId() + " -: " + record.getFields());
107
}
0 commit comments