From 639eb30c7b3eaa6baaeb23eac28b9459452e6fd4 Mon Sep 17 00:00:00 2001 From: apio Date: Mon, 7 Aug 2023 19:17:22 +0200 Subject: [PATCH] libui: Change 'into' to 'onto' --- libui/include/ui/Font.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libui/include/ui/Font.h b/libui/include/ui/Font.h index a2614638..44b13163 100644 --- a/libui/include/ui/Font.h +++ b/libui/include/ui/Font.h @@ -55,7 +55,7 @@ namespace ui static SharedPtr default_bold_font(); /** - * @brief Render a single Unicode code point into a canvas, using this font's glyphs. + * @brief Render a single Unicode code point onto a canvas, using this font's glyphs. * * @param codepoint The code point to render. * @param color The color to draw the code point in. @@ -64,7 +64,7 @@ namespace ui void render(wchar_t codepoint, ui::Color color, ui::Canvas& canvas); /** - * @brief Render a Unicode text string into a canvas, using this font's glyphs. + * @brief Render a Unicode text string onto a canvas, using this font's glyphs. * * @param text The string to render (must be null-terminated). * @param color The color to draw the code point in.