Skip to content

Commit eadf74e

Browse files
author
Daniel Skogquist Åborg
committed
Fix javadoc.
1 parent af1abf9 commit eadf74e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/main/java/org/d2ab/sequence/IntSequence.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,14 @@ static IntSequence empty() {
5151
}
5252

5353
/**
54-
* Create an {@code IntSequence} with the given {@code ints].
54+
* Create an {@code IntSequence} with the given {@code ints}.
5555
*/
5656
static IntSequence of(int... is) {
5757
return () -> IntIterator.of(is);
5858
}
5959

6060
/**
61-
* Create an {@code intSequence} with the given {@code ints], limited to the given size.
61+
* Create an {@code IntSequence} with the given {@code ints}, limited to the given size.
6262
*/
6363
static IntSequence from(int[] is, int size) {
6464
return () -> IntIterator.from(is, size);
@@ -73,7 +73,7 @@ static IntSequence from(int[] is, int offset, int size) {
7373
}
7474

7575
/**
76-
* Create an {@code IntSequence} from a {@link IntIterable}.
76+
* Create an {@code IntSequence} from an {@link IntIterable}.
7777
*
7878
* @see #cache(IntIterable)
7979
*/

0 commit comments

Comments
 (0)