Added line break

This commit is contained in:
Elytherion
2019-08-06 13:43:20 +02:00
parent 4a08b79dcf
commit afbbdbad4d
+2 -1
View File
@@ -126,7 +126,8 @@ add 2 3
// good
const x = myFunction (otherFunc ("Hi")) (3);
// good (such line breaks (compare to above) are usually needed either because of readability or because the line would be too long otherwise)
// good (such line breaks (compare to above) are usually needed either because of readability
// or because the line would be too long otherwise)
const x = myFunction (otherFunc ("Hi"))
(3);