Update trig.go

This commit is contained in:
Regan Kuchan 2015-12-01 16:39:39 -08:00
parent 9fa5ea847d
commit 3d0e3982d7
1 changed files with 3 additions and 3 deletions

View File

@ -12,8 +12,8 @@ type Trig struct {
}
var TrigConfig = `
# Set the amplitude
amplitude = 10.0
# Set the amplitude
amplitude = 10.0
`
func (s *Trig) SampleConfig() string {
@ -21,7 +21,7 @@ func (s *Trig) SampleConfig() string {
}
func (s *Trig) Description() string {
return "Insert trig data"
return "Inserts sine and cosine waves for demonstration purposes"
}
func (s *Trig) Gather(acc plugins.Accumulator) error {