From e76548a96a4bd511c4b8f086a064377ae484ca7c Mon Sep 17 00:00:00 2001 From: Scott Sanderson Date: Sat, 25 Jul 2015 19:05:30 -0400 Subject: [PATCH] MAINT: Simpler way of writing classes. --- docs/source/extending.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/extending.rst b/docs/source/extending.rst index d15e6c147..ba921c13d 100644 --- a/docs/source/extending.rst +++ b/docs/source/extending.rst @@ -16,10 +16,10 @@ Contents API The Jupyter Notebook web application provides a graphical interface for creating, opening, renaming, and deleting files in a virtual filesystem. -The :class:`ContentsManager` class defines an abstract +The :class:`~manager.ContentsManager` class defines an abstract API for translating these interactions into operations on a particular storage medium. The default implementation, -:class:`FileContentsManager`, uses the local +:class:`~filemanager.FileContentsManager`, uses the local filesystem of the server for storage and straightforwardly serializes notebooks into JSON. Users can override these behaviors by supplying custom subclasses of ContentsManager. @@ -186,7 +186,7 @@ Required Methods '''''''''''''''' A minimal complete implementation of a custom -:class:`ContentsManager` must implement the following +:class:`~manager.ContentsManager` must implement the following methods: .. autosummary::