Explorar el Código

Merge pull request #4 from sergeyklay/patch-1

Test Travis build
Seth Vargo hace 9 años
padre
commit
019a056b21
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      uuid.go

+ 1 - 1
uuid.go

@@ -15,7 +15,7 @@ func GenerateRandomBytes(size int) ([]byte, error) {
 	return buf, nil
 }
 
-// GenerateUUID is used to generate a random UUID
+// GenerateUUID is used to generate a random UUID v4 that is defined by RFC 4122 ("Leach-Salz")
 func GenerateUUID() (string, error) {
 	buf, err := GenerateRandomBytes(16)
 	if err != nil {