From 46a3f1530eafd2e871b99ea62a922420807cfe5f Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Mon, 3 Jul 2017 02:30:46 +0900 Subject: [PATCH] audio: Fix comment --- audio/timeout_js.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audio/timeout_js.go b/audio/timeout_js.go index 1a40310ac..3cc0b0146 100644 --- a/audio/timeout_js.go +++ b/audio/timeout_js.go @@ -22,6 +22,6 @@ import ( func timeoutIfPossible(t time.Duration) <-chan time.Time { // time.After uses setTimeout and causes performance problems. - // This function returns null and actually blocks forever. + // This function returns nil and blocks forever. return nil }