diff options
Diffstat (limited to 'app/serializers/README.md')
-rw-r--r-- | app/serializers/README.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/serializers/README.md b/app/serializers/README.md index 2cbe6f9d263..89721f572e0 100644 --- a/app/serializers/README.md +++ b/app/serializers/README.md @@ -47,11 +47,11 @@ representation. It rarely happens that a serialization entity exists without a corresponding domain model class. As an example, we have an `Issue` class and a corresponding `IssueSerializer`. -Serialization entites are designed to reuse other serialization entities, which +Serialization entities are designed to reuse other serialization entities, which is a convenient way to create a multi-level JSON representation of a piece of a domain model you want to serialize. -See [documentation for Grape Entites][grape-entity-readme] for more details. +See [documentation for Grape Entities][grape-entity-readme] for more details. ## How to implement a serializer? |