I'm reading the API Guide on Fields in the link
https://www.django-rest-framework.org/api-guide/fields/
One of the example usage of DecimalField seems to have an error:

Instead of validating numbers up to 999 in the original text, it seems to be more precise that the piece of code seralizers.DecimalField(max_digits=5, decimal_places=2) validates numbers up to 999.99.
I wonder if this question could be clarified and expect any validation from others :)