fix typos in pkg

Signed-off-by: allencloud <allen.sun@daocloud.io>
This commit is contained in:
allencloud 2016-04-09 21:18:15 +08:00
parent 3f3ba02798
commit b8047bf930
10 changed files with 12 additions and 12 deletions

View file

@ -20,7 +20,7 @@ func GenerateRandomAlphaOnlyString(n int) string {
return string(b)
}
// GenerateRandomASCIIString generates an ASCII random stirng with length n.
// GenerateRandomASCIIString generates an ASCII random string with length n.
func GenerateRandomASCIIString(n int) string {
chars := "abcdefghijklmnopqrstuvwxyz" +
"ABCDEFGHIJKLMNOPQRSTUVWXYZ" +
@ -74,7 +74,7 @@ func quote(word string, buf *bytes.Buffer) {
}
// ShellQuoteArguments takes a list of strings and escapes them so they will be
// handled right when passed as arguments to an program via a shell
// handled right when passed as arguments to a program via a shell
func ShellQuoteArguments(args []string) string {
var buf bytes.Buffer
for i, arg := range args {