From c192b684d3685f85ae8376d633f7c17df934d3cf Mon Sep 17 00:00:00 2001 From: faiface Date: Thu, 1 Dec 2016 17:49:40 +0100 Subject: [PATCH] fix doc --- pixelgl/orphan.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pixelgl/orphan.go b/pixelgl/orphan.go index cd97c28..b67f8fc 100644 --- a/pixelgl/orphan.go +++ b/pixelgl/orphan.go @@ -4,7 +4,7 @@ import "github.com/go-gl/gl/v3.3-core/gl" // This file defines functions that can operate without a parent Doer. -// Clear clears the current context.. +// Clear clears the current OpenGL context. func Clear(r, g, b, a float32) { DoNoBlock(func() { gl.ClearColor(r, g, b, a)