mirror of
https://github.com/encode/django-rest-framework.git
synced 2025-02-09 08:00:52 +03:00
Fix code block in README.md
(#8408)
Hi there, The code block below show imply `Python` as it lives in `settings.py` ``` INSTALLED_APPS = [ ... 'rest_framework', ] ``` This pull request essentially fixes that.
This commit is contained in:
parent
b3083d83ae
commit
b521160c92
11
README.md
11
README.md
|
@ -67,11 +67,12 @@ Install using `pip`...
|
||||||
pip install djangorestframework
|
pip install djangorestframework
|
||||||
|
|
||||||
Add `'rest_framework'` to your `INSTALLED_APPS` setting.
|
Add `'rest_framework'` to your `INSTALLED_APPS` setting.
|
||||||
|
```python
|
||||||
INSTALLED_APPS = [
|
INSTALLED_APPS = [
|
||||||
...
|
...
|
||||||
'rest_framework',
|
'rest_framework',
|
||||||
]
|
]
|
||||||
|
```
|
||||||
|
|
||||||
# Example
|
# Example
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user