Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ufocoder committed May 19, 2024
1 parent b8bb40a commit 787a764
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/levels/level_2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const random = (from: number, to: number) => {


const generateZombies = (limit: number, x: number, y: number, dx: number, dy: number) => {
return new Array(limit).fill(0).map(() => generateZobie(
return new Array(limit).fill(0).map(() => generateZombie(
random(x - dx, x + dx),
random(y - dy, y + dy),
));
Expand Down

0 comments on commit 787a764

Please sign in to comment.