Skip to content

Commit 57e5beb

Browse files
authored
Update article.md
1 parent d13cf45 commit 57e5beb

File tree

1 file changed

+1
-1
lines changed
  • 1-js/02-first-steps/18-javascript-specials

1 file changed

+1
-1
lines changed

1-js/02-first-steps/18-javascript-specials/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ Cubrimos tres formas de crear una función en JavaScript:
259259
// la expresión en el lado derecho
260260
let sum = (a, b) => a + b;
261261
262-
// o sintaxi multilínea { ... }, necesita return aquí:
262+
// o sintaxis multilínea { ... }, necesita return aquí:
263263
let sum = (a, b) => {
264264
// ...
265265
return a + b;

0 commit comments

Comments
 (0)