File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -175,10 +175,10 @@ GitLab4J-API provides an easy to use paging mechanism to page through lists of r
175
175
Here are a couple of examples on how to use the Pager:
176
176
``` java
177
177
// Get a Pager instance that will page through the projects with 10 projects per page
178
- Pager<Project > projectPager = gitlabApi . getProjectsApi (). getProjects(10 );
178
+ Pager<Project > projectPager = gitLabApi . getProjectApi (). getProjects(10 );
179
179
180
180
// Iterate through the pages and print out the name and description
181
- while (projectsPager . hasNext() )) {
181
+ while (projectPager . hasNext()) {
182
182
for (Project project : projectPager. next()) {
183
183
System . out. println(project. getName() + " -: " + project. getDescription());
184
184
}
You can’t perform that action at this time.
0 commit comments