1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 09:18:11 +00:00

LibGfx: Change "white_space" => "whitespace"

Whitespace is one word. :^)
This commit is contained in:
Andreas Kling 2021-05-09 09:59:22 +02:00
parent 57c96ce501
commit 6998fa5c54
3 changed files with 9 additions and 9 deletions

View file

@ -73,7 +73,7 @@ static bool read_image_data(PGMLoadingContext& context, Streamer& streamer)
if (!read_number(streamer, &value))
break;
if (!read_white_space(context, streamer))
if (!read_whitespace(context, streamer))
break;
color_data.append({ (u8)value, (u8)value, (u8)value });