Skip to content

Commit 91eca6e

Browse files
committed
fix typos
1 parent b4fd278 commit 91eca6e

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/CONTRIBUTING.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
Code style
22
----------
33

4-
1. Please use ``fixed integers``, see `stdint.h`_. Why? This library is compatible to different boards which use different architectures (16bit vs 32bit). So unfixed ``int`` has different sizes on different environments and may cause unpredictable behaviour.
4+
1. Please use `fixed integers`, see `stdint.h`_. Why? This library is compatible to different boards which use different architectures (8bit vs 32bit). So unfixed `int` has different sizes on different environments and may cause unpredictable behaviour.
55

66
2. If possible: use advantages of `c++11`, e.g. `constexpr`.
77

8-
3. Use tab in source files. Space in examples.
9-
10-
4. Add documentation to **every** new function or parameter. Add documentation to most steps in your source code.
8+
3. Add documentation to **every** new function or parameter. Add documentation to most steps in your source code.

0 commit comments

Comments
 (0)