From 23e72bb56d1f0b3145e96d6af0105e089bbe7316 Mon Sep 17 00:00:00 2001 From: Dmitry Chestnykh Date: Tue, 5 Apr 2011 19:56:42 +0200 Subject: [PATCH] Update README. --- README | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README b/README index 6eed9aa..c8f7df0 100644 --- a/README +++ b/README @@ -42,15 +42,15 @@ FUNCTIONS func New() string -New returns a new random string with the standard length and standard -characters. +New returns a new random string of the standard length, consisting of +standard characters. func NewLen(length int) string -NewLen returns a new random string with the provided length and standard -characters. +NewLen returns a new random string of the provided length, consisting of +standard characters. func NewLenChars(length int, chars []byte) string -NewLenChars returns a new random string with the provided length and byte -slice of allowed characters (maximum 256). +NewLenChars returns a new random string of the provided length, consisting +of the provided byte slice of allowed characters (maximum 256).