Skip to content

Commit dade18b

Browse files
committed
CODECONVENTIONS.md: Fix typos.
1 parent 258804a commit dade18b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

CODECONVENTIONS.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ a change in a detail, if needed. Any change beyond 5 lines would likely
2424
require such detailed description.
2525

2626
To get good practical examples of good commits and their messages, browse
27-
thry the `git log` of the project.
27+
the `git log` of the project.
2828

2929
Python code conventions
3030
=======================
@@ -33,7 +33,7 @@ Python code follows [PEP 8](http://legacy.python.org/dev/peps/pep-0008/).
3333

3434
Naming conventions:
3535
- Module names are short and all lowercase; eg pyb, stm.
36-
- Class names are CamelCase, with abreviations all uppercase; eg I2C, not
36+
- Class names are CamelCase, with abbreviations all uppercase; eg I2C, not
3737
I2c.
3838
- Function and method names are all lowercase with words separated by
3939
a single underscore as necessary to improve readability; eg mem_read.
@@ -52,7 +52,7 @@ White space:
5252
keyword and the opening parenthesis.
5353
- Put 1 space after a comma, and 1 space around operators.
5454

55-
Braces:
55+
Braces:
5656
- Use braces for all blocks, even no-line and single-line pieces of
5757
code.
5858
- Put opening braces on the end of the line it belongs to, not on

0 commit comments

Comments
 (0)