Skip to content

Commit

Permalink
Fixed some markup that caused broken links in the static files docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
timgraham committed Jan 22, 2014
1 parent c3fdeb2 commit 03395b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/ref/contrib/staticfiles.txt
Expand Up @@ -215,7 +215,7 @@ storage backend that uses the :setting:`STATIC_ROOT` setting as the base
file system location and the :setting:`STATIC_URL` setting respectively
as the base URL.

.. method:: post_process(paths, **options)
.. method:: storage.StaticFilesStorage.post_process(paths, **options)

This method is called by the :djadmin:`collectstatic` management command
after each run and gets passed the local storages and paths of found
Expand Down Expand Up @@ -282,7 +282,7 @@ hashed names for all processed files in a file called ``staticfiles.json``.
This happens once when you run the :djadmin:`collectstatic` management
command.

.. method:: file_hash(name, content=None)
.. method:: storage.ManifestStaticFilesStorage.file_hash(name, content=None)

The method that is used when creating the hashed name of a file.
Needs to return a hash for the given file name and content.
Expand Down

1 comment on commit 03395b4

@jezdez
Copy link
Contributor

@jezdez jezdez commented on 03395b4 Jan 22, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks, @timgraham!

Please sign in to comment.