1
0
mirror of https://github.com/bdring/Grbl_Esp32.git synced 2025-08-21 21:57:16 +02:00

Avoid reiterationIteration in spindle names (#530)

This commit is contained in:
Mitch Bradley
2020-08-10 10:37:32 -10:00
committed by GitHub
parent 898edc7f95
commit 77dfa95555
21 changed files with 154 additions and 154 deletions

View File

@@ -51,7 +51,7 @@ have a single class.
- Class names and namespace names are named `CamelCase`. Note that
class and namespace names should only start with an `_` if they are
(A) not in the global namespace and (b) should otherwise start with a digit.
For example `_10VSpindle`.
For example `_10V`.
- Class member functions should be `snake_case`
- Class member variables should be `_snake_case` with a leading `_`.