summaryrefslogtreecommitdiff
path: root/src/export/render.rs
diff options
context:
space:
mode:
authorAlexander Seiler <seileralex@gmail.com>2023-04-12 15:13:36 +0200
committerGitHub <noreply@github.com>2023-04-12 15:13:36 +0200
commite4fda4176ec477c3508549e165c12406f939e8f6 (patch)
tree08b28c86bbaf77476f3277eb55821b6b6c268259 /src/export/render.rs
parent1198e0cd385737efc38dbd8ba13db802a68e0dc7 (diff)
Correct some typos (#746)
Diffstat (limited to 'src/export/render.rs')
-rw-r--r--src/export/render.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/export/render.rs b/src/export/render.rs
index 18d8a74b..8cee3aa6 100644
--- a/src/export/render.rs
+++ b/src/export/render.rs
@@ -297,7 +297,7 @@ fn render_outline_glyph(
let c = color.to_rgba();
// Pad the pixmap with 1 pixel in each dimension so that we do
- // not get any problem with floating point errors along ther border
+ // not get any problem with floating point errors along their border
let mut pixmap = sk::Pixmap::new(mw + 2, mh + 2)?;
for x in 0..mw {
for y in 0..mh {