Chromium Code Reviews| Index: sky/specs/style-guide.md |
| diff --git a/sky/specs/style-guide.md b/sky/specs/style-guide.md |
| index e71ad84061b45cd04ecf1063bc5a20870abe350e..123acd453eb91acbb0b43a1dbd59332dd9ccc1d1 100644 |
| --- a/sky/specs/style-guide.md |
| +++ b/sky/specs/style-guide.md |
| @@ -121,9 +121,15 @@ options. |
| > ``` |
| +Use for-in loops rather than forEach() where possible, since that |
| +saves a stack frame per iteration. |
| + |
| + |
| C++ |
| --- |
| +Put spaces around operators in expressions. |
| + |
| Java |
| ---- |