aboutsummaryrefslogtreecommitdiffstats
path: root/docs/api-guide
diff options
context:
space:
mode:
authorTom Christie2015-02-06 15:27:35 +0000
committerTom Christie2015-02-06 15:27:35 +0000
commit5d8c3abe726768d30619f7596fb863b4f83719ee (patch)
tree646dfb8012ee35178d65e2ae85de41f6f2d360d0 /docs/api-guide
parentdec3493d7c3ea630a4d51b21bb7e793f0e97ae99 (diff)
downloaddjango-rest-framework-5d8c3abe726768d30619f7596fb863b4f83719ee.tar.bz2
Fix typo
Diffstat (limited to 'docs/api-guide')
-rw-r--r--docs/api-guide/versioning.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/api-guide/versioning.md b/docs/api-guide/versioning.md
index 7463f190..30dfeb2c 100644
--- a/docs/api-guide/versioning.md
+++ b/docs/api-guide/versioning.md
@@ -150,7 +150,7 @@ In the following example we're giving a set of views two different possible URL
url(r'^v2/bookings/', include('bookings.urls', namespace='v2'))
]
-Both `URLParameterVersioning` and `NamespaceVersioning` are reasonable if you just need a simple versioning scheme. The `URLParameterVersioning` approach might be better suitable for small ad-hoc projects, and the `NaemspaceVersioning` is probably easier to manage for larger projects.
+Both `URLParameterVersioning` and `NamespaceVersioning` are reasonable if you just need a simple versioning scheme. The `URLParameterVersioning` approach might be better suitable for small ad-hoc projects, and the `NamespaceVersioning` is probably easier to manage for larger projects.
## HostNameVersioning