summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2013-02-14 11:22:33 +0100
committerClaude Paroz <claude@2xlibre.net>2013-02-14 11:23:52 +0100
commit668d0b8d499c45ef7d449b5e56f0adc97660d417 (patch)
treead97758d5e24e547bf0b0334d3f388be5315ff03 /docs
parent138de533ff677b470a1e7b4b6ff084a5b7a7444b (diff)
Fixed #19823 -- Fixed memcached code example in cache docs
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/cache.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/cache.txt b/docs/topics/cache.txt
index 208fa3a5e2..e345b89dcd 100644
--- a/docs/topics/cache.txt
+++ b/docs/topics/cache.txt
@@ -137,7 +137,7 @@ on the IP addresses 172.19.26.240 (port 11211), 172.19.26.242 (port 11212), and
'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
'LOCATION': [
'172.19.26.240:11211',
- '172.19.26.242:11211',
+ '172.19.26.242:11212',
'172.19.26.244:11213',
]
}