Fix documentation in contexts.nim

This commit is contained in:
Simon Krauter 2023-10-02 21:34:18 -03:00 committed by GitHub
parent 523b364fca
commit 7d6d84b610
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -481,8 +481,8 @@ proc fillText*(ctx: Context, text: string, at: Vec2) {.raises: [PixieError].} =
proc fillText*(
ctx: Context, text: string, x, y: float32
) {.inline, raises: [PixieError].} =
## Draws the outlines of the characters of a text string at the specified
## coordinates.
## Draws a text string at the specified coordinates, filling the string's
## characters with the current fillStyle
ctx.fillText(text, vec2(x, y))
proc strokeText*(ctx: Context, text: string, at: Vec2) {.raises: [PixieError].} =