all repos — captcha @ 73e6160e7aefcff4f2aa991310f9d3287de0bbeb

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

Merge pull request #2 from ebfe/typo

Fix typo.
Dmitry Chestnykh dmitry@codingrobots.com
Wed, 11 Dec 2013 13:22:50 -0800
commit

73e6160e7aefcff4f2aa991310f9d3287de0bbeb

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. //