Apply fixes to README.

This commit is contained in:
Dmitry Chestnykh 2015-01-21 10:16:15 +01:00
parent e12eafb5ea
commit 6bf29ee29b

View File

@ -31,12 +31,13 @@ Constants
```go ```go
const ( const (
// Standard length of uniuri string to achive ~95 bits of entropy. // StdLen is a standard length of uniuri string to achive ~95 bits of entropy.
StdLen = 16 StdLen = 16
// Length of uniurl string to achive ~119 bits of entropy, closest // UUIDLen is a length of uniuri string to achive ~119 bits of entropy, closest
// to what can be losslessly converted to UUIDv4 (122 bits). // to what can be losslessly converted to UUIDv4 (122 bits).
UUIDLen = 20 UUIDLen = 20
) )
``` ```
@ -48,7 +49,8 @@ Variables
var StdChars = []byte("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789") var StdChars = []byte("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789")
``` ```
Standard characters allowed in uniuri string.
StdChars is a set of standard characters allowed in uniuri string.
Functions Functions