Skip to content

Commit 4c870cb

Browse files
kevinjiljharb
authored andcommitted
[guide] Fix function signature spacing
1 parent c8b1164 commit 4c870cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2816,7 +2816,7 @@ Other Style Guides
28162816
28172817
// bad - raises exception
28182818
const reaction = "No! That's impossible!"
2819-
(async function meanwhileOnTheFalcon(){
2819+
(async function meanwhileOnTheFalcon() {
28202820
// handle `leia`, `lando`, `chewie`, `r2`, `c3p0`
28212821
// ...
28222822
}())
@@ -2836,7 +2836,7 @@ Other Style Guides
28362836
28372837
// good
28382838
const reaction = "No! That's impossible!";
2839-
(async function meanwhileOnTheFalcon(){
2839+
(async function meanwhileOnTheFalcon() {
28402840
// handle `leia`, `lando`, `chewie`, `r2`, `c3p0`
28412841
// ...
28422842
}());

0 commit comments

Comments
 (0)