Skip to content

Commit be0b8b4

Browse files
committed
fix comment typo + add travis.yml
1 parent b02b5a8 commit be0b8b4

File tree

2 files changed

+21
-12
lines changed

2 files changed

+21
-12
lines changed

.travis.yml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
language: go
2+
go:
3+
- 1.5.4
4+
- 1.6.4
5+
- 1.7.4
6+
- tip
7+
sudo: false
8+
env:
9+
- GO15VENDOREXPERIMENT=1

formats.go

+12-12
Original file line numberDiff line numberDiff line change
@@ -97,42 +97,42 @@ var (
9797
// WAV
9898
// MONO
9999

100-
// FormatMono225008bLE mono 8bit 22.5kHz AIFF like format.
100+
// FormatMono225008bLE mono 8bit 22.5kHz WAV like format.
101101
FormatMono225008bLE = &Format{
102102
NumChannels: 1,
103103
SampleRate: 22500,
104104
BitDepth: 8,
105105
Endianness: binary.LittleEndian,
106106
}
107-
// FormatMono2250016bLE mono 16bit 22.5kHz AIFF like format.
107+
// FormatMono2250016bLE mono 16bit 22.5kHz WAV like format.
108108
FormatMono2250016bLE = &Format{
109109
NumChannels: 1,
110110
SampleRate: 22500,
111111
BitDepth: 16,
112112
Endianness: binary.LittleEndian,
113113
}
114-
// FormatMono441008bLE mono 8bit 44.1kHz AIFF like format.
114+
// FormatMono441008bLE mono 8bit 44.1kHz WAV like format.
115115
FormatMono441008bLE = &Format{
116116
NumChannels: 1,
117117
SampleRate: 44100,
118118
BitDepth: 8,
119119
Endianness: binary.LittleEndian,
120120
}
121-
// FormatMono4410016bLE mono 16bit 44.1kHz AIFF like format.
121+
// FormatMono4410016bLE mono 16bit 44.1kHz WAV like format.
122122
FormatMono4410016bLE = &Format{
123123
NumChannels: 1,
124124
SampleRate: 44100,
125125
BitDepth: 16,
126126
Endianness: binary.LittleEndian,
127127
}
128-
// FormatMono4410024bLE mono 24bit 44.1kHz AIFF like format.
128+
// FormatMono4410024bLE mono 24bit 44.1kHz WAV like format.
129129
FormatMono4410024bLE = &Format{
130130
NumChannels: 1,
131131
SampleRate: 44100,
132132
BitDepth: 24,
133133
Endianness: binary.LittleEndian,
134134
}
135-
// FormatMono4410032bLE mono 32bit 44.1kHz AIFF like format.
135+
// FormatMono4410032bLE mono 32bit 44.1kHz WAV like format.
136136
FormatMono4410032bLE = &Format{
137137
NumChannels: 1,
138138
SampleRate: 44100,
@@ -142,42 +142,42 @@ var (
142142

143143
// STEREO
144144

145-
// FormatStereo225008bLE Stereo 8bit 22.5kHz AIFF like format.
145+
// FormatStereo225008bLE Stereo 8bit 22.5kHz WAV like format.
146146
FormatStereo225008bLE = &Format{
147147
NumChannels: 2,
148148
SampleRate: 22500,
149149
BitDepth: 8,
150150
Endianness: binary.LittleEndian,
151151
}
152-
// FormatStereo2250016bLE Stereo 16bit 22.5kHz AIFF like format.
152+
// FormatStereo2250016bLE Stereo 16bit 22.5kHz WAV like format.
153153
FormatStereo2250016bLE = &Format{
154154
NumChannels: 2,
155155
SampleRate: 22500,
156156
BitDepth: 16,
157157
Endianness: binary.LittleEndian,
158158
}
159-
// FormatStereo441008bLE Stereo 8bit 44.1kHz AIFF like format.
159+
// FormatStereo441008bLE Stereo 8bit 44.1kHz WAV like format.
160160
FormatStereo441008bLE = &Format{
161161
NumChannels: 2,
162162
SampleRate: 44100,
163163
BitDepth: 8,
164164
Endianness: binary.LittleEndian,
165165
}
166-
// FormatStereo4410016bLE Stereo 16bit 44.1kHz AIFF like format.
166+
// FormatStereo4410016bLE Stereo 16bit 44.1kHz WAV like format.
167167
FormatStereo4410016bLE = &Format{
168168
NumChannels: 2,
169169
SampleRate: 44100,
170170
BitDepth: 16,
171171
Endianness: binary.LittleEndian,
172172
}
173-
// FormatStereo4410024bLE Stereo 24bit 44.1kHz AIFF like format.
173+
// FormatStereo4410024bLE Stereo 24bit 44.1kHz WAV like format.
174174
FormatStereo4410024bLE = &Format{
175175
NumChannels: 2,
176176
SampleRate: 44100,
177177
BitDepth: 24,
178178
Endianness: binary.LittleEndian,
179179
}
180-
// FormatStereo4410032bLE Stereo 32bit 44.1kHz AIFF like format.
180+
// FormatStereo4410032bLE Stereo 32bit 44.1kHz WAV like format.
181181
FormatStereo4410032bLE = &Format{
182182
NumChannels: 2,
183183
SampleRate: 44100,

0 commit comments

Comments
 (0)