audio/internal/convert: typo

This commit is contained in:
Hajime Hoshi 2024-07-14 17:50:48 +09:00
parent b552266afe
commit fc70392093

View File

@ -23,7 +23,7 @@ import (
var (
// cosTable contains values of cosine applied to the range [0, π/2).
// It must be initialised the first time it is referenced
// in a function via its lazy load wrapper getCosTable().
// in a function via its lazy load wrapper ensureCosTable().
cosTable []float64
cosTableOnce sync.Once
)