all repos — captcha @ d8b1fe6ab3714faf336e74b1fd984ee29875286d

Go package captcha implements generation and verification of image and audio CAPTCHAs.

Fix typo.
Michael Gehring mg@ebfe.org
Wed, 11 Dec 2013 16:14:40 +0100
commit

d8b1fe6ab3714faf336e74b1fd984ee29875286d

parent

46413fff73d81754c039253470a0c7a426c999a4

2 files changed, 2 insertions(+), 2 deletions(-)

jump to
M README.mdREADME.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.goaudio.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. //