summaryrefslogtreecommitdiff
path: root/docs/source/plugin-development
diff options
context:
space:
mode:
authorIan Cordasco <graffatcolmingov@gmail.com>2016-10-25 12:01:43 -0500
committerIan Cordasco <graffatcolmingov@gmail.com>2016-10-25 12:01:43 -0500
commit1cfc12f366c8b3408993374ddc5a73f5f66da43e (patch)
tree1c548a9164283b8ab8dbab81ffc232892b1eeeeb /docs/source/plugin-development
parent91a1ce47d6cf2a0161546fec7268cc42fece89c5 (diff)
downloadflake8-1cfc12f366c8b3408993374ddc5a73f5f66da43e.tar.gz
Trim trailing spaces from documentation
Diffstat (limited to 'docs/source/plugin-development')
-rw-r--r--docs/source/plugin-development/plugin-parameters.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/source/plugin-development/plugin-parameters.rst b/docs/source/plugin-development/plugin-parameters.rst
index 729f9c5..1625098 100644
--- a/docs/source/plugin-development/plugin-parameters.rst
+++ b/docs/source/plugin-development/plugin-parameters.rst
@@ -53,11 +53,11 @@ the data instead of being called on each physical or logical line.
These parameters can also be supplied to plugins working on each line
separately.
-Plugins that depend on ``physical_line`` or ``logical_line`` are run on each
-physical or logical line once. These parameters should be the first in the
-list of arguments (with the exception of ``self``). Plugins that need an AST
-(e.g., PyFlakes and McCabe) should depend on ``tree``. These plugins will run
-once per file. The parameters listed above can be combined with
+Plugins that depend on ``physical_line`` or ``logical_line`` are run on each
+physical or logical line once. These parameters should be the first in the
+list of arguments (with the exception of ``self``). Plugins that need an AST
+(e.g., PyFlakes and McCabe) should depend on ``tree``. These plugins will run
+once per file. The parameters listed above can be combined with
``physical_line``, ``logical_line``, and ``tree``.