diff --git a/README.md b/README.md
index d14d6d3..b74355a 100644
--- a/README.md
+++ b/README.md
@@ -1101,7 +1101,7 @@ class MySortable:
```
### Iterator
-* **Next() should return the next item or raise 'StopIteration'.**
+* **Next() should return next item or raise 'StopIteration'.**
* **Iter() should return 'self'.**
```python
class Counter:
diff --git a/index.html b/index.html
index 2306379..f28132d 100644
--- a/index.html
+++ b/index.html
@@ -1035,7 +1035,7 @@ Z = dataclasses.make_dataclass('Z', [
Iterator
-- Next() should return the next item or raise 'StopIteration'.
+- Next() should return next item or raise 'StopIteration'.
- Iter() should return 'self'.
class Counter: