diff options
| author | Tom Christie | 2014-11-07 10:14:03 +0000 |
|---|---|---|
| committer | Tom Christie | 2014-11-07 10:14:03 +0000 |
| commit | 555930ee81c21f02fb7f44119a0a35dc4f7c048a (patch) | |
| tree | f1107b56abdc8a4e0698e2eff231ef501a520065 /docs/api-guide/throttling.md | |
| parent | 9b19b5a59485c9dad4a18538a8a86f1ae4ea2a55 (diff) | |
| parent | 9078fd4f689717aef7feecde7e7692d87050c611 (diff) | |
| download | django-rest-framework-555930ee81c21f02fb7f44119a0a35dc4f7c048a.tar.bz2 | |
Merge branch 'master' of https://github.com/tomchristie/django-rest-framework
Diffstat (limited to 'docs/api-guide/throttling.md')
| -rw-r--r-- | docs/api-guide/throttling.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/api-guide/throttling.md b/docs/api-guide/throttling.md index 16a7457b..147c16ff 100644 --- a/docs/api-guide/throttling.md +++ b/docs/api-guide/throttling.md @@ -74,7 +74,7 @@ If you need to strictly identify unique client IP addresses, you'll need to firs It is important to understand that if you configure the `NUM_PROXIES` setting, then all clients behind a unique [NAT'd](http://en.wikipedia.org/wiki/Network_address_translation) gateway will be treated as a single client. -Further context on how the `X-Forwarded-For` header works, and identifing a remote client IP can be [found here][identifing-clients]. +Further context on how the `X-Forwarded-For` header works, and identifying a remote client IP can be [found here][identifing-clients]. ## Setting up the cache @@ -85,7 +85,7 @@ If you need to use a cache other than `'default'`, you can do so by creating a c class CustomAnonRateThrottle(AnonRateThrottle): cache = get_cache('alternate') -You'll need to rememeber to also set your custom throttle class in the `'DEFAULT_THROTTLE_CLASSES'` settings key, or using the `throttle_classes` view attribute. +You'll need to remember to also set your custom throttle class in the `'DEFAULT_THROTTLE_CLASSES'` settings key, or using the `throttle_classes` view attribute. --- |
