Skip to content
This repository was archived by the owner on Aug 19, 2025. It is now read-only.

Commit 8f61317

Browse files
authored
fix Array example in docs (#88)
1 parent e96479a commit 8f61317

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/fields.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ Used to validate a list of data. For example:
152152

153153
```python
154154
# Validates data like `[8, 7, 0, 8, 4, 5]`
155-
ratings = typesystem.Array(items=typesystem.Integer(min_value=0, max_value=10))
155+
ratings = typesystem.Array(items=typesystem.Integer(minimum=0, maximum=10))
156156
```
157157

158158
**Arguments**:

0 commit comments

Comments
 (0)