Skip to content

Commit 67b3d45

Browse files
authored
Typo - extra letter 'l' before calling function
1 parent a8455f9 commit 67b3d45

File tree

1 file changed

+1
-1
lines changed
  • 1-js/05-data-types/05-array-methods/8-sort-objects

1 file changed

+1
-1
lines changed

1-js/05-data-types/05-array-methods/8-sort-objects/task.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ let mary = { name: "Mary", age: 28 }
1515

1616
let arr = [ john, pete, mary ];
1717

18-
lsortByName(arr);
18+
sortByName(arr);
1919

2020
// now: [john, mary, pete]
2121
alert(arr[1].name) // Mary

0 commit comments

Comments
 (0)