diff --git a/pixelgl/vertex.go b/pixelgl/vertex.go
index 06b305b75473859576dccdcfe3f5b0da53919aab..836df5b4ce040f8118c0ab1b344953f3e7796421 100644
--- a/pixelgl/vertex.go
+++ b/pixelgl/vertex.go
@@ -95,7 +95,7 @@ type VertexArray struct {
 	count  int
 }
 
-// NewVertexArray creates a new vertex array and wrap another BeginEnder around it.
+// NewVertexArray creates a new vertex array and wraps another BeginEnder around it.
 func NewVertexArray(parent BeginEnder, format VertexFormat, mode VertexDrawMode, usage VertexUsage, data []float64) *VertexArray {
 	va := &VertexArray{
 		parent: parent,