From 5230121aa173e4907c06c485f9da85c0e749c263 Mon Sep 17 00:00:00 2001 From: Daniel Quinn Date: Tue, 12 Jan 2021 14:09:30 +0000 Subject: [PATCH] Fix a typo --- docs/why.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/why.rst b/docs/why.rst index 9f86bbaa1..94da2e636 100644 --- a/docs/why.rst +++ b/docs/why.rst @@ -25,7 +25,7 @@ Unlike `Flask-RESTful`_, which uses dictionaries to define output schemas, marsh Consistency meets flexibility. ------------------------------ -Marshmallow makes it easy to modify a schema's output at application runtime. A single :class:`Schema ` can produce multiple outputs formats while keeping the individual field outputs consistent. +Marshmallow makes it easy to modify a schema's output at application runtime. A single :class:`Schema ` can produce multiple output formats while keeping the individual field outputs consistent. As an example, you might have a JSON endpoint for retrieving all information about a video game's state. You then add a low-latency endpoint that only returns a minimal subset of information about game state. Both endpoints can be handled by the same `Schema `.