diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2008-07-25 11:21:21 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2008-07-25 11:21:21 +0000 |
| commit | ecdd071794ddbc71844778a5587f33296fa2da09 (patch) | |
| tree | bff73aec92c6828d68fd299cee54f3b98d9131c2 /docs | |
| parent | dd5194ad7e484d89b67df544721e67057d7ef3e7 (diff) | |
Fixed #7951 -- Corrected typo in FAQ. Thanks to vulcan_eager for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8071 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/faq.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/faq.txt b/docs/faq.txt index 978106f432..2c1ffa72db 100644 --- a/docs/faq.txt +++ b/docs/faq.txt @@ -425,7 +425,7 @@ Using a ``FileField`` or an ``ImageField`` in a model takes a few steps: of ``MEDIA_ROOT`` it should upload files. #. All that will be stored in your database is a path to the file - (relative to ``MEDIA_ROOT``). You'll must likely want to use the + (relative to ``MEDIA_ROOT``). You'll most likely want to use the convenience ``get_<fieldname>_url`` function provided by Django. For example, if your ``ImageField`` is called ``mug_shot``, you can get the absolute URL to your image in a template with |
