Skip to content

Commit

Permalink
[ko] fillStyle 예제 draw 함수의 누락된 중괄호 추가 (mdn#25336)
Browse files Browse the repository at this point in the history
Fix: Missing closing brace in draw function example

- fillStyle 예제의 draw 함수에서 누락된 중괄호 닫기 문자 추가
  • Loading branch information
dmstmdrbs authored Jan 8, 2025
1 parent 4093489 commit 3de4a64
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ function draw() {
Math.floor(255 - 42.5 * j) +
", 0)";
ctx.fillRect(j * 25, i * 25, 25, 25);
}
}
}
```

Expand Down

0 comments on commit 3de4a64

Please sign in to comment.