summaryrefslogtreecommitdiffstats
path: root/docs/coding_conventions_c.md
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2022-10-05 16:55:12 +0000
committerQMK Bot <hello@qmk.fm>2022-10-05 16:55:12 +0000
commit86ce1d4b04031174b3eca666fbee5f7c9c706ab2 (patch)
tree1893ffaa3f6096e3a07d8cf971c14880db7e82bf /docs/coding_conventions_c.md
parentd1b6b062024dddf047f760efbad21edb2acca394 (diff)
parent959f4cbb621868a4f0c1701f54ad2a1f45d889af (diff)
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'docs/coding_conventions_c.md')
-rw-r--r--docs/coding_conventions_c.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/coding_conventions_c.md b/docs/coding_conventions_c.md
index c4bace66cc..3f44da713d 100644
--- a/docs/coding_conventions_c.md
+++ b/docs/coding_conventions_c.md
@@ -24,7 +24,7 @@ Most of our style is pretty easy to pick up on, but right now it's not entirely
* Readability is more important than consistency.
* Follow the file's existing style. If the file is mixed, follow the style that makes sense for the section you are modifying.
* When indenting, keep the hash at the start of the line and add whitespace between `#` and `if`, starting with 4 spaces after the `#`.
- * You can follow the indention level of the surrounding C code, or preprocessor directives can have their own indentation levels. Choose the style that best communicates the intent of your code.
+ * You can follow the indentation level of the surrounding C code, or preprocessor directives can have their own indentation levels. Choose the style that best communicates the intent of your code.
Here is an example for easy reference: