Merge pull request #2 from ebfe/typo Fix typo.
Dmitry Chestnykh dmitry@codingrobots.com
Wed, 11 Dec 2013 13:22:50 -0800
M
README.md
→
README.md
@@ -207,7 +207,7 @@ ### func NewAudio
func NewAudio(digits []byte, lang string) *Audio -NewImage returns a new audio captcha with the given digits, where each digit +NewAudio returns a new audio captcha with the given digits, where each digit must be in range 0-9. Digits are pronounced in the given language. If there are no sounds for the given language, English is used.
M
audio.go
→
audio.go
@@ -28,7 +28,7 @@ body *bytes.Buffer
digitSounds [][]byte } -// NewImage returns a new audio captcha with the given digits, where each digit +// NewAudio returns a new audio captcha with the given digits, where each digit // must be in range 0-9. Digits are pronounced in the given language. If there // are no sounds for the given language, English is used. //