styleguide: Don't include a whitespace in the fallback function

This commit is contained in:
ethers
2016-11-17 18:13:33 -08:00
committed by GitHub
parent 549bca1494
commit 1d9aee97c2
+13
View File
@@ -262,6 +262,19 @@ No::
y = 2;
long_variable = 3;
Don't include a whitespace in the fallback function:
Yes::
function() {
...
}
No::
function () {
...
}
Control Structures
==================