From f9fe851db964937d08fc51950ec72a7f90b37079 Mon Sep 17 00:00:00 2001 From: Greg Van Liew Date: Wed, 30 Jan 2019 08:20:07 -0800 Subject: [PATCH] Fix typo --- docs/python/editing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/python/editing.md b/docs/python/editing.md index 7c0f3b42f8..de9aaee899 100644 --- a/docs/python/editing.md +++ b/docs/python/editing.md @@ -85,7 +85,7 @@ On first use of the **Python: Run Selection/Line in Python Terminal** command, V ## Formatting -Formatting makes code easier to ready by human beings by applying specific rules and conventions for line spacing, indents, spacing around operators, and so on (see an example on the [autopep8](https://pypi.org/project/autopep8/) page). Formatting doesn't affect the functionality of the code itself. ([Linting](/docs/python/linting.md), on the other hand, analyzes code for common syntactical, stylistic, and functional errors as well as unconventional programming practices that can lead to errors. Although there is a little overlap between formatting and linting, the two capabilities are complementary.) +Formatting makes code easier to read by human beings by applying specific rules and conventions for line spacing, indents, spacing around operators, and so on (see an example on the [autopep8](https://pypi.org/project/autopep8/) page). Formatting doesn't affect the functionality of the code itself. ([Linting](/docs/python/linting.md), on the other hand, analyzes code for common syntactical, stylistic, and functional errors as well as unconventional programming practices that can lead to errors. Although there is a little overlap between formatting and linting, the two capabilities are complementary.) The Python extension supports source code formatting using either [autopep8](https://pypi.org/project/autopep8/) (the default), [black](https://github.com/ambv/black), or [yapf](https://github.com/google/yapf).