Skip to content

Commit ba17007

Browse files
committed
Fix typo of word 'inaccuracy'
1 parent 81e30ab commit ba17007

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/game.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ void game_setup(struct game *const game) {
137137
for (double x = -(half_num_columns + 1)
138138
* (brick_size_x + 2.0 * brick_margin_x);
139139
x <= half_num_columns * (brick_size_x + 2.0 * brick_margin_x)
140-
+ 1.0 /* +1 because floating point inaccurary */;
140+
+ 1.0 /* +1 because floating point inaccuracy */;
141141
x += brick_size_x + 2.0 * brick_margin_x)
142142
{
143143
struct brick *brick = easy_malloc(sizeof(struct brick));

0 commit comments

Comments
 (0)