Fix some typos in the docstrings

This commit is contained in:
jgraeme 2010-08-03 00:18:19 +08:00 committed by Armin Ronacher
parent ff2786d8af
commit 549af62290
4 changed files with 8 additions and 8 deletions

View file

@ -54,7 +54,7 @@ class Module(_PackageBoundObject):
to be provided to keep them apart. If different import names are used,
the rightmost part of the import name is used as name.
Here an example structure for a larger appliation::
Here's an example structure for a larger application::
/myapplication
/__init__.py
@ -73,7 +73,7 @@ class Module(_PackageBoundObject):
app.register_module(admin, url_prefix='/admin')
app.register_module(frontend)
And here an example view module (`myapplication/views/admin.py`)::
And here's an example view module (`myapplication/views/admin.py`)::
from flask import Module