don't start counting at 0
This commit is contained in:
parent
227f76bc82
commit
36ecd62faf
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ fn main() -> Result<(), ureq::Error> {
|
||||||
|
|
||||||
// Iterate over meanings and print them
|
// Iterate over meanings and print them
|
||||||
for (i, entry) in body.iter().enumerate() {
|
for (i, entry) in body.iter().enumerate() {
|
||||||
if i > options.limit {
|
if i >= options.limit {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue