diff options
Diffstat (limited to 'djangorestframework/response.py')
| -rw-r--r-- | djangorestframework/response.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/djangorestframework/response.py b/djangorestframework/response.py index 545a5834..9b3c5851 100644 --- a/djangorestframework/response.py +++ b/djangorestframework/response.py @@ -21,6 +21,6 @@ class Response(object): class ErrorResponse(BaseException): - """An exception representing an HttpResponse that should be returned immediatley.""" + """An exception representing an HttpResponse that should be returned immediately.""" def __init__(self, status, content=None, headers={}): self.response = Response(status, content=content, headers=headers) |
