From 955b004c3c5661712325a1b09bc379b2be9a338f Mon Sep 17 00:00:00 2001 From: Ishaan Date: Tue, 2 Feb 2021 03:49:14 +0530 Subject: [PATCH] Fixed a typo and a grammatical error --- docs/logical_data_abstraction.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/logical_data_abstraction.rst b/docs/logical_data_abstraction.rst index 100207b..9e00993 100644 --- a/docs/logical_data_abstraction.rst +++ b/docs/logical_data_abstraction.rst @@ -5,7 +5,7 @@ Logical data abstraction .. currentmodule:: flask_rest_jsonapi -The first thing to do in Flask-REST-JSONAPI is to create a logical data abstraction. This part of the api discribes schemas of resources exposed by the api that is not the exact mapping of the data architecture. The declaration of schemas is made by `Marshmallow `_ / `marshmallow-jsonapi `_. Marshmallow is a very popular serialization / deserialization library that offers a lot of features to abstract your data architecture. Moreover there is an other library called marshmallow-jsonapi that fit the JSONAPI 1.0 specification and provides Flask integration. +The first thing to do in Flask-REST-JSONAPI is to create a logical data abstraction. This part of the api describes schemas of resources exposed by the api that is not the exact mapping of the data architecture. The declaration of schemas is made by `Marshmallow `_ / `marshmallow-jsonapi `_. Marshmallow is a very popular serialization / deserialization library that offers a lot of features to abstract your data architecture. Moreover there is an other library called marshmallow-jsonapi that fits the JSONAPI 1.0 specification and provides Flask integration. Example: