aboutsummaryrefslogtreecommitdiffstats
path: root/docs/api-guide
diff options
context:
space:
mode:
authoraRkadeFR2015-02-20 15:59:10 +0100
committeraRkadeFR2015-02-20 15:59:10 +0100
commitc0916c2859468f4888d688217baca73747fd3bf7 (patch)
tree0a810d311d775fe9936a92eb9421f43f218a3f42 /docs/api-guide
parentdc8cc8607763fccc6eb3668ea7e2a976c08dd614 (diff)
downloaddjango-rest-framework-c0916c2859468f4888d688217baca73747fd3bf7.tar.bz2
Documentation test fix double word
Diffstat (limited to 'docs/api-guide')
-rw-r--r--docs/api-guide/testing.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/api-guide/testing.md b/docs/api-guide/testing.md
index d9a1696d..1b96b325 100644
--- a/docs/api-guide/testing.md
+++ b/docs/api-guide/testing.md
@@ -14,7 +14,7 @@ Extends [Django's existing `RequestFactory` class][requestfactory].
## Creating test requests
-The `APIRequestFactory` class supports an almost identical API to Django's standard `RequestFactory` class. This means the that standard `.get()`, `.post()`, `.put()`, `.patch()`, `.delete()`, `.head()` and `.options()` methods are all available.
+The `APIRequestFactory` class supports an almost identical API to Django's standard `RequestFactory` class. This means that standard `.get()`, `.post()`, `.put()`, `.patch()`, `.delete()`, `.head()` and `.options()` methods are all available.
from rest_framework.test import APIRequestFactory