From 7b88b357473226b6c25d866a2e411349b807e385 Mon Sep 17 00:00:00 2001 From: Martin Michlmayr Date: Sun, 24 Feb 2019 10:40:23 +0000 Subject: [PATCH] Fix typos in the documentation --- docs/config.rst | 2 +- docs/extensions.rst | 2 +- docs/patterns/caching.rst | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/config.rst b/docs/config.rst index 03938ef6..b68f0d22 100644 --- a/docs/config.rst +++ b/docs/config.rst @@ -565,7 +565,7 @@ then you must do so before calling :meth:`~flask.Config.from_object`:: cfg = import_string('configmodule.ProductionConfig')() app.config.from_object(cfg) -Instantiating the configutation object allows you to use ``@property`` in +Instantiating the configuration object allows you to use ``@property`` in your configuration classes:: class Config(object): diff --git a/docs/extensions.rst b/docs/extensions.rst index 92e8a5b2..e91e9b6c 100644 --- a/docs/extensions.rst +++ b/docs/extensions.rst @@ -25,7 +25,7 @@ Consult each extension's documentation for installation, configuration, and usage instructions. Generally, extensions pull their own configuration from :attr:`app.config ` and are passed an application instance during initialization. For example, -an extension caled "Flask-Foo" might be used like this:: +an extension called "Flask-Foo" might be used like this:: from flask_foo import Foo diff --git a/docs/patterns/caching.rst b/docs/patterns/caching.rst index ec42f117..d6c8a02b 100644 --- a/docs/patterns/caching.rst +++ b/docs/patterns/caching.rst @@ -11,7 +11,7 @@ you actually put the result of that calculation into a cache for some time. Flask itself does not provide caching for you, but `Flask-Caching`_, an -extentions for Flask does. Flask-Caching supports various backends, and it is +extension for Flask does. Flask-Caching supports various backends, and it is even possible to develop your own caching backend.