aboutsummaryrefslogtreecommitdiffstats
path: root/docs/coding_conventions_python.md
diff options
context:
space:
mode:
authorosjuga <43299093+osjuga@users.noreply.github.com>2019-12-07 07:19:18 -0500
committerfauxpark <fauxpark@gmail.com>2019-12-07 23:19:18 +1100
commitf275ffbdfc1cbd1965cd3546b45a7838012321da (patch)
tree548dba9d1d37dd236dfee8e97ebca5088c6989c6 /docs/coding_conventions_python.md
parent36a6e269bfff8b557a92e3c5e7a4a104d0dfe5f7 (diff)
downloadfirmware-f275ffbdfc1cbd1965cd3546b45a7838012321da.tar.gz
firmware-f275ffbdfc1cbd1965cd3546b45a7838012321da.tar.bz2
firmware-f275ffbdfc1cbd1965cd3546b45a7838012321da.zip
Minor grammar and filename fixes in docs (#7559)
Grammar in coding_conventions_c.md and coding_conventions_python.md `rule.mk` to `rules.mk` in feature_haptic_feedback.md and feature_rgb_matrix.md
Diffstat (limited to 'docs/coding_conventions_python.md')
-rw-r--r--docs/coding_conventions_python.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/coding_conventions_python.md b/docs/coding_conventions_python.md
index 694aa38cf..9dd95e4b7 100644
--- a/docs/coding_conventions_python.md
+++ b/docs/coding_conventions_python.md
@@ -8,7 +8,7 @@ Most of our style follows PEP8 with some local modifications to make things less
* Think of them as a story describing the feature
* Use them liberally to explain why particular decisions were made.
* Do not write obvious comments
- * If you not sure if a comment is obvious, go ahead and include it.
+ * If you're not sure if a comment is obvious, go ahead and include it.
* We require useful docstrings for all functions.
* In general we don't wrap lines, they can be as long as needed. If you do choose to wrap lines please do not wrap any wider than 76 columns.
* Some of our practices conflict with the wider python community to make our codebase more approachable to non-pythonistas.