Small rewording

This commit is contained in:
Radoslav Georgiev 2021-11-21 18:04:08 +02:00
parent 0aa2c23dc2
commit 9d59ad0495
No known key found for this signature in database
GPG Key ID: 0B7753A4DFCE646D

View File

@ -44,7 +44,7 @@ Django styleguide that we use in [HackSoft](https://hacksoft.io).
* [Describe how your API errors are going to look like.](#describe-how-your-api-errors-are-going-to-look-like) * [Describe how your API errors are going to look like.](#describe-how-your-api-errors-are-going-to-look-like)
* [Know how to change the default exception handling behavior.](#know-how-to-change-the-default-exception-handling-behavior) * [Know how to change the default exception handling behavior.](#know-how-to-change-the-default-exception-handling-behavior)
* [Approach 1 - Use DRF's default exceptions, with very little modifications.](#approach-1---use-drfs-default-exceptions-with-very-little-modifications) * [Approach 1 - Use DRF's default exceptions, with very little modifications.](#approach-1---use-drfs-default-exceptions-with-very-little-modifications)
* [HackSoft's proposed approach](#hacksofts-proposed-approach) * [Approach 2 - HackSoft's proposed way](#approach-2---hacksofts-proposed-way)
- [Testing](#testing-2) - [Testing](#testing-2)
* [Naming conventions](#naming-conventions) * [Naming conventions](#naming-conventions)
- [Celery](#celery) - [Celery](#celery)
@ -1471,7 +1471,7 @@ Response:
} }
``` ```
### HackSoft's proposed approach ### Approach 2 - HackSoft's proposed way
We are going to propose an approach, that can be easily extended into something that works well for you. We are going to propose an approach, that can be easily extended into something that works well for you.