From adf8fb34ced765b25634ec4bef6a40ea55defff5 Mon Sep 17 00:00:00 2001 From: James Doherty Date: Fri, 24 Oct 2014 09:00:33 +1300 Subject: [PATCH] Fixed typo in docs/ref/request-response.txt --- docs/ref/request-response.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/request-response.txt b/docs/ref/request-response.txt index 339789b2b06..2a437568898 100644 --- a/docs/ref/request-response.txt +++ b/docs/ref/request-response.txt @@ -900,7 +900,7 @@ Without passing ``safe=False``, a :exc:`TypeError` will be raised. Changing the default JSON encoder ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -If you need to use a differ JSON encoder class you can pass the ``encoder`` +If you need to use a different JSON encoder class you can pass the ``encoder`` parameter to the constructor method:: >>> response = JsonResponse(data, encoder=MyJSONEncoder)