Ticket #14562: typo-straightforward.diff

File typo-straightforward.diff, 1.6 KB (added by Stephane Raimbault, 14 years ago)

Fix a typo and remove trailing spaces

  • docs/howto/static-files.txt

    diff --git a/docs/howto/static-files.txt b/docs/howto/static-files.txt
    index 5cb36a6..8d27409 100644
    a b that can easily be served in production.  
    2626    ``django.contrib.staticfiles`` will look very familiar. That's because
    2727    they're essentially the same code: ``django.contrib.staticfiles`` started
    2828    its life as `django-staticfiles`_ and was merged into Django 1.3.
    29    
     29
    3030    If you're upgrading from ``django-staticfiles``, please see `Upgrading from
    3131    django-staticfiles`_, below, for a few minor changes you'll need to make.
    3232
    __ http://fabfile.org/  
    252252
    253253Below, and in the following sections, we'll show off a few example fabfiles
    254254(i.e. Fabric scripts) that automate these media deployment options. The syntax
    255 of a fabfile is fairly streightforward but won't be covered here; consult
     255of a fabfile is fairly straightforward but won't be covered here; consult
    256256`Fabric's documentation`__, for a complete explanation of the syntax..
    257257
    258258__ http://docs.fabfile.org/
    you'll need to make a few changes:  
    385385    * The settings ``STATICFILES_PREPEND_LABEL_APPS``,
    386386      ``STATICFILES_MEDIA_DIRNAMES`` and ``STATICFILES_EXCLUDED_APPS`` were
    387387      removed.
    388      
     388
    389389    * The setting ``STATICFILES_RESOLVERS`` was removed, and replaced by the new
    390390      :setting:`STATICFILES_FINDERS`.
    391      
     391
    392392    * The default for :setting:`STATICFILES_STORAGE` was renamed from
    393393      ``staticfiles.storage.StaticFileStorage`` to
    394394      ``staticfiles.storage.StaticFilesStorage``
    395      
     395
    396396Learn more
    397397==========
    398398
Back to Top