libui: Change 'into' to 'onto'

This commit is contained in:
apio 2023-08-07 19:17:22 +02:00
parent 0bb96985bf
commit 639eb30c7b
Signed by: apio
GPG Key ID: B8A7D06E42258954

View File

@ -55,7 +55,7 @@ namespace ui
static SharedPtr<Font> default_bold_font(); static SharedPtr<Font> 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 codepoint The code point to render.
* @param color The color to draw the code point in. * @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); 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 text The string to render (must be null-terminated).
* @param color The color to draw the code point in. * @param color The color to draw the code point in.