Skip to content

Commit

Permalink
Merge pull request #315 from davidxia/dxia/patch1
Browse files Browse the repository at this point in the history
Fix typos in javadocs
  • Loading branch information
kohsuke authored Nov 26, 2016
2 parents a1df526 + 68ebc08 commit a298960
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/kohsuke/github/GHPerson.java
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,10 @@ protected void wrapUp(GHRepository[] page) {
}

/**
* Loads repository list in a pagenated fashion.
* Loads repository list in a paginated fashion.
*
* <p>
* For a person with a lot of repositories, GitHub returns the list of repositories in a pagenated fashion.
* For a person with a lot of repositories, GitHub returns the list of repositories in a paginated fashion.
* Unlike {@link #getRepositories()}, this method allows the caller to start processing data as it arrives.
*
* Every {@link Iterator#next()} call results in I/O. Exceptions that occur during the processing is wrapped
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/kohsuke/github/PagedIterator.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import java.util.NoSuchElementException;

/**
* Iterator over a pagenated data source.
* Iterator over a paginated data source.
*
* Aside from the normal iterator operation, this method exposes {@link #nextPage()}
* that allows the caller to retrieve items per page.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/kohsuke/github/Requester.java
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ private boolean isMethodWithBody() {
}

/**
* Loads pagenated resources.
* Loads paginated resources.
*
* Every iterator call reports a new batch.
*/
Expand Down

0 comments on commit a298960

Please sign in to comment.