Skip to content

Commit b2f8c1d

Browse files
Merge pull request #4 from CharlieDigital/CharlieDigital-patch-1
Fix typo in code example
2 parents 37adb9d + b01a7c9 commit b2f8c1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/pages/intermediate/linq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ let names = candidates.map(
7575

7676
// Combine
7777
let backendNames = candidates.filter(
78-
c => c.osition === 'backend'
78+
c => c.position === 'backend'
7979
).map(
8080
c => c.name
8181
); // ["Ada"]

0 commit comments

Comments
 (0)