internal/graphicscommand: fix a wrong comment

This commit is contained in:
Hajime Hoshi 2023-07-30 01:56:58 +09:00
parent 4df647a400
commit 246bd41695

View File

@ -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)
}