mirror of
https://github.com/vsariola/sointu.git
synced 2025-07-14 02:54:37 -04:00
style: add comments to the public methods and members in the root package.
This commit is contained in:
@ -134,6 +134,10 @@ var UnitTypes = map[string]([]UnitParameter){
|
||||
"sync": []UnitParameter{},
|
||||
}
|
||||
|
||||
// Ports is static map allowing quickly finding the parameters of a unit that
|
||||
// can be modulated. This is populated based on the UnitTypes list during
|
||||
// init(). Thus, should be immutable, but Go not supporting that, then this will
|
||||
// have to suffice: DO NOT EVER CHANGE THIS MAP.
|
||||
var Ports = make(map[string]([]string))
|
||||
|
||||
func init() {
|
||||
|
Reference in New Issue
Block a user