From 246bd416954a5bcd07540b11353f1a76a4c620a2 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Sun, 30 Jul 2023 01:56:58 +0900 Subject: [PATCH] internal/graphicscommand: fix a wrong comment --- internal/graphicscommand/thread.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/graphicscommand/thread.go b/internal/graphicscommand/thread.go index 912627a43..d15c01aa6 100644 --- a/internal/graphicscommand/thread.go +++ b/internal/graphicscommand/thread.go @@ -31,7 +31,7 @@ func SetRenderThread(thread Thread) { theRenderThread = thread } -// runOnRenderThread calls f on the rendering thread, and returns an error if any. +// runOnRenderThread calls f on the rendering thread. func runOnRenderThread(f func()) { theRenderThread.Call(f) }