From 120fffa42c0ce5e055ec7388f79a3a3968f6050f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20L=C3=B6vdahl?= Date: Wed, 1 Jan 2025 19:05:51 +0200 Subject: [PATCH] Fix typo in `freetype-load-flags` documentation --- src/config/Config.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/Config.zig b/src/config/Config.zig index 91c07cc78..4ee8e7228 100644 --- a/src/config/Config.zig +++ b/src/config/Config.zig @@ -320,7 +320,7 @@ const c = @cImport({ /// FreeType load flags to enable. The format of this is a list of flags to /// enable separated by commas. If you prefix a flag with `no-` then it is -/// disabled. If you omit a flag, it's default value is used, so you must +/// disabled. If you omit a flag, its default value is used, so you must /// explicitly disable flags you don't want. You can also use `true` or `false` /// to turn all flags on or off. ///