goldbergyoni / nodebestpractices

:white_check_mark: The Node.js best practices list (July 2024)
https://twitter.com/nodepractices/
Creative Commons Attribution Share Alike 4.0 International
97.41k stars 9.89k forks source link

Wrong example #1255

Closed fkerekiglobant closed 11 months ago

fkerekiglobant commented 12 months ago

In 3.3 Start a Codeblock's Curly Braces on the Same Line, the example is wrong -- the same code is shown twice.

// Do
function someFunction() {
  // code block
}

// Avoid
function someFunction() {
  // code block
}
josephgrossberg commented 11 months ago

Perhaps he meant this?

// Do
function someFunction() {
  // code block
}

// Avoid
function someFunction() 
{
  // code block
}
rluvaton commented 11 months ago

thanks, fixed in #1258