Skip to content
This repository has been archived by the owner on Mar 12, 2018. It is now read-only.

Commit

Permalink
Fix documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
sirn committed Mar 18, 2011
1 parent 5a3a435 commit 9a56cd9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,14 @@ Setting up Flask-CouchDBKit is easy::
author = couchdb.StringProperty()
content = couchdb.StringProperty()

In case you want late-binding of a `CouchDBKit` object, you can use
In case you want late-binding of a :class:`CouchDBKit` object, you can use
:meth:`CouchDBKit.init_app` to bind it to your `app` object after it has been
created::

from flask import Flask
from flaskext.couchdbkit import CouchDBKit
couchdb = CouchDBKit()

from flaskext.couchdbkit import CouchDBKit
from flask import Flask
app = Flask(__name__)
couchdb.init_app(app)

Expand Down

0 comments on commit 9a56cd9

Please sign in to comment.