don't start counting at 0

This commit is contained in:
jojii 2021-03-15 23:24:30 +01:00
parent 227f76bc82
commit 36ecd62faf
No known key found for this signature in database
GPG key ID: 87B75C673974601F

View file

@ -47,7 +47,7 @@ fn main() -> Result<(), ureq::Error> {
// Iterate over meanings and print them
for (i, entry) in body.iter().enumerate() {
if i > options.limit {
if i >= options.limit {
break;
}