diff --git a/text/atlas.go b/text/atlas.go
index 8f19dcfefe7c08317e155f84faf1b8a75485652b..2670ecce7f5d4a37c6b037fb33555b1619c16afb 100644
--- a/text/atlas.go
+++ b/text/atlas.go
@@ -96,7 +96,7 @@ func (a *Atlas) Glyph(r rune) Glyph {
 	return a.mapping[r]
 }
 
-// Kern returns the kerning distance between runes r0 and r1. Positive distance means, that the
+// Kern returns the kerning distance between runes r0 and r1. Positive distance means that the
 // glyphs should be further apart.
 func (a *Atlas) Kern(r0, r1 rune) float64 {
 	return i2f(a.face.Kern(r0, r1))