summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarthikeyan Singaravelan <tir.karthi@gmail.com>2020-01-06 20:41:32 +0530
committerMarcel Hellkamp <marc@gsites.de>2020-12-31 19:28:56 +0100
commitf48c9eb0dcb9ea7a2c230928ff0556e9e6586336 (patch)
treee18da5a0f0cb7427f0ce67e18858eaa03cf8c657
parent57402ad01233b70370153d2360b7ef50d2a3fd2c (diff)
downloadbottle-f48c9eb0dcb9ea7a2c230928ff0556e9e6586336.tar.gz
Fix typos in documentation.
-rwxr-xr-xdocs/changelog.rst2
-rw-r--r--docs/development.rst2
-rwxr-xr-xdocs/recipes.rst2
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
<http://devcenter.heroku.com/articles/quickstart>`_,