We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc0f9f2 commit ce8a983Copy full SHA for ce8a983
README.md
@@ -175,10 +175,10 @@ GitLab4J-API provides an easy to use paging mechanism to page through lists of r
175
Here are a couple of examples on how to use the Pager:
176
```java
177
// Get a Pager instance that will page through the projects with 10 projects per page
178
-Pager<Project> projectPager = gitlabApi.getProjectsApi().getProjects(10);
+Pager<Project> projectPager = gitLabApi.getProjectApi().getProjects(10);
179
180
// Iterate through the pages and print out the name and description
181
-while (projectsPager.hasNext())) {
+while (projectPager.hasNext()) {
182
for (Project project : projectPager.next()) {
183
System.out.println(project.getName() + " -: " + project.getDescription());
184
}
0 commit comments