Skip to content

Commit 68ebc08

Browse files
committed
Fix typos in javadocs
Replace "pagenated" with "paginated".
1 parent a1df526 commit 68ebc08

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/main/java/org/kohsuke/github/GHPerson.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,10 @@ protected void wrapUp(GHRepository[] page) {
9393
}
9494

9595
/**
96-
* Loads repository list in a pagenated fashion.
96+
* Loads repository list in a paginated fashion.
9797
*
9898
* <p>
99-
* For a person with a lot of repositories, GitHub returns the list of repositories in a pagenated fashion.
99+
* For a person with a lot of repositories, GitHub returns the list of repositories in a paginated fashion.
100100
* Unlike {@link #getRepositories()}, this method allows the caller to start processing data as it arrives.
101101
*
102102
* Every {@link Iterator#next()} call results in I/O. Exceptions that occur during the processing is wrapped

src/main/java/org/kohsuke/github/PagedIterator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import java.util.NoSuchElementException;
77

88
/**
9-
* Iterator over a pagenated data source.
9+
* Iterator over a paginated data source.
1010
*
1111
* Aside from the normal iterator operation, this method exposes {@link #nextPage()}
1212
* that allows the caller to retrieve items per page.

src/main/java/org/kohsuke/github/Requester.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ private boolean isMethodWithBody() {
355355
}
356356

357357
/**
358-
* Loads pagenated resources.
358+
* Loads paginated resources.
359359
*
360360
* Every iterator call reports a new batch.
361361
*/

0 commit comments

Comments
 (0)