Skip to content

Commit 1368d36

Browse files
authored
Added the separator line back
Accidentally also deleted a line.
1 parent ad501d4 commit 1368d36

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

docs/api-guide/views.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ REST framework provides an `APIView` class, which subclasses Django's `View` cla
1919
Using the `APIView` class is pretty much the same as using a regular `View` class, as usual, the incoming request is dispatched to an appropriate handler method such as `.get()` or `.post()`. Additionally, a number of attributes may be set on the class that control various aspects of the API policy.
2020

2121
For example:
22+
2223
from rest_framework.views import APIView
2324
from rest_framework.response import Response
2425
from rest_framework import authentication, permissions

0 commit comments

Comments
 (0)