From f632ba25e0406d2f0e374eb2e4637599a18bff77 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Mon, 22 Jul 2013 02:12:17 -0700 Subject: [PATCH] api.rst: fix some spelling/typos --- docs/api.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/api.rst b/docs/api.rst index 9662187f..75295b1e 100644 --- a/docs/api.rst +++ b/docs/api.rst @@ -365,7 +365,7 @@ You can instead just do this:: from flask import json For usage examples, read the :mod:`json` documentation in the standard -lirbary. The following extensions are by default applied to the stdlib's +library. The following extensions are by default applied to the stdlib's JSON module: 1. ``datetime`` objects are serialized as :rfc:`822` strings. @@ -505,7 +505,7 @@ Signals .. data:: signals_available - `True` if the signalling system is available. This is the case + `True` if the signaling system is available. This is the case when `blinker`_ is installed. .. data:: template_rendered @@ -728,7 +728,7 @@ some defaults to :meth:`~flask.Flask.add_url_rule` or general behavior: - `required_methods`: if this attribute is set, Flask will always add these methods when registering a URL rule even if the methods were - explicitly overriden in the ``route()`` call. + explicitly overridden in the ``route()`` call. Full example::