Skip to content

Commit b521160

Browse files
Fix code block in README.md (encode#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.
1 parent b3083d8 commit b521160

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

README.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,12 @@ Install using `pip`...
6767
pip install djangorestframework
6868

6969
Add `'rest_framework'` to your `INSTALLED_APPS` setting.
70-
71-
INSTALLED_APPS = [
72-
...
73-
'rest_framework',
74-
]
70+
```python
71+
INSTALLED_APPS = [
72+
...
73+
'rest_framework',
74+
]
75+
```
7576

7677
# Example
7778

0 commit comments

Comments
 (0)