summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-10-16 19:42:16 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-10-16 19:42:16 +0000
commitf1ecfe991d32f42202a6ed3ce61a234982286c5b (patch)
treebdb09ba4f3224e2d22885a67f14b4588998573dd /docs
parenta2e26150b77cd2cdad4cc9de120a87a6370c6dd5 (diff)
Fixed #630 -- Fixed formatting error in docs/model-api.txt. Thanks, ken@kenkinder.com
git-svn-id: http://code.djangoproject.com/svn/django/trunk@887 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/model-api.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/model-api.txt b/docs/model-api.txt
index 140518e80e..ee5f9ee723 100644
--- a/docs/model-api.txt
+++ b/docs/model-api.txt
@@ -252,7 +252,7 @@ Here are all available field types:
Using a `FieldField` or an ``ImageField`` (see below) in a model takes a few
steps:
- 1. In your settings file, you'll need to define ``MEDIA_ROOT``as the
+ 1. In your settings file, you'll need to define ``MEDIA_ROOT`` as the
full path to a directory where you'd like Django to store uploaded
files. (For performance, these files are not stored in the database.)
Define ``MEDIA_URL`` as the base public URL of that directory. Make