diff options
-rw-r--r-- | runtime/doc/dev_style.txt | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/runtime/doc/dev_style.txt b/runtime/doc/dev_style.txt index 6d832219f6..733b9c50c3 100644 --- a/runtime/doc/dev_style.txt +++ b/runtime/doc/dev_style.txt @@ -181,13 +181,6 @@ Use `bool` to represent boolean values. > int loaded = 1; // BAD: loaded should have type bool. -Variable declarations ~ - -Declare only one variable per line. > - - int i, j = 1 - - Conditions ~ Don't use "yoda-conditions". Use at most one assignment per condition. > |