From f1ecfe991d32f42202a6ed3ce61a234982286c5b Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sun, 16 Oct 2005 19:42:16 +0000 Subject: [PATCH] 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 --- docs/model-api.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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