Fixed small typos in docs. Added a cross-ref.

This commit is contained in:
Ron DuPlain 2010-10-06 14:05:35 +08:00 committed by Armin Ronacher
parent 216478f715
commit 6875a057ec
19 changed files with 27 additions and 27 deletions

View file

@ -30,7 +30,7 @@ So here is a full example::
request.form['password'] != 'secret':
error = 'Invalid credentials'
else:
flash('You were sucessfully logged in')
flash('You were successfully logged in')
return redirect(url_for('index'))
return render_template('login.html', error=error)
@ -100,7 +100,7 @@ to the :func:`~flask.flash` function::
Inside the template you then have to tell the
:func:`~flask.get_flashed_messages` function to also return the
categories. The loop looks slighty different in that situation then:
categories. The loop looks slightly different in that situation then:
.. sourcecode:: html+jinja