From 6ca1c939df41ce6fcf03ac94a14618b5465db36a Mon Sep 17 00:00:00 2001 From: Ryan Schmidt Date: Wed, 14 Jun 2023 13:40:45 -0500 Subject: [PATCH] Fix typo in comment --- mypaint-fixed-tiled-surface.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mypaint-fixed-tiled-surface.c b/mypaint-fixed-tiled-surface.c index a85051eb..287e324d 100644 --- a/mypaint-fixed-tiled-surface.c +++ b/mypaint-fixed-tiled-surface.c @@ -68,7 +68,7 @@ tile_request_end(MyPaintTiledSurface *tiled_surface, MyPaintTileRequest *request const int ty = request->ty; if (tx >= self->tiles_width || ty >= self->tiles_height || tx < 0 || ty < 0) { - // Wipe any changed done to the null tile + // Wipe any changes done to the null tile reset_null_tile(self); } else { // We hand out direct pointers to our buffer, so for the normal case nothing needs to be done