From f48c9eb0dcb9ea7a2c230928ff0556e9e6586336 Mon Sep 17 00:00:00 2001 From: Karthikeyan Singaravelan Date: Mon, 6 Jan 2020 20:41:32 +0530 Subject: Fix typos in documentation. --- docs/changelog.rst | 2 +- docs/development.rst | 2 +- docs/recipes.rst | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 9169ae4..634de80 100755 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -144,7 +144,7 @@ Release 0.10 * Introduced a :class:`ConfigDict` that makes accessing configuration a lot easier (attribute access and auto-expanding namespaces). * Added support for raw WSGI applications to :meth:`Bottle.mount`. * :meth:`Bottle.mount` parameter order changed. - * :meth:`Bottle.route` now accpets an import string for the ``callback`` parameter. + * :meth:`Bottle.route` now accepts an import string for the ``callback`` parameter. * Dropped Gunicorn 0.8 support. Current supported version is 0.13. * Added custom options to Gunicorn server. * Finally dropped support for type filters. Replace with a custom plugin of needed. diff --git a/docs/development.rst b/docs/development.rst index 1ea504c..54b681b 100644 --- a/docs/development.rst +++ b/docs/development.rst @@ -80,7 +80,7 @@ The best way to get your changes integrated into the main development branch is * **Documentation:** Tell us what your patch does. Comment your code. If you introduced a new feature, add to the documentation so others can learn about it. * **Test:** Write tests to prove that your code works as expected and does not break anything. If you fixed a bug, write at least one test-case that triggers the bug. Make sure that all tests pass before you submit a patch. -* **One patch at a time:** Only fix one bug or add one feature at a time. Design your patches so that they can be applyed as a whole. Keep your patches clean, small and focused. +* **One patch at a time:** Only fix one bug or add one feature at a time. Design your patches so that they can be applied as a whole. Keep your patches clean, small and focused. * **Sync with upstream:** If the ``upstream/master`` branch changed while you were working on your patch, rebase or pull to make sure that your patch still applies without conflicts. diff --git a/docs/recipes.rst b/docs/recipes.rst index c1c3b0d..34315a6 100755 --- a/docs/recipes.rst +++ b/docs/recipes.rst @@ -261,7 +261,7 @@ Using Bottle with Heroku ------------------------ Heroku_, a popular cloud application platform now provides support -for running Python applications on their infastructure. +for running Python applications on their infrastructure. This recipe is based upon the `Heroku Quickstart `_, -- cgit v1.2.1