We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81e30ab commit ba17007Copy full SHA for ba17007
1 file changed
src/game.c
@@ -137,7 +137,7 @@ void game_setup(struct game *const game) {
137
for (double x = -(half_num_columns + 1)
138
* (brick_size_x + 2.0 * brick_margin_x);
139
x <= half_num_columns * (brick_size_x + 2.0 * brick_margin_x)
140
- + 1.0 /* +1 because floating point inaccurary */;
+ + 1.0 /* +1 because floating point inaccuracy */;
141
x += brick_size_x + 2.0 * brick_margin_x)
142
{
143
struct brick *brick = easy_malloc(sizeof(struct brick));
0 commit comments