change minor mistake of spelling

Signed-off-by: allencloud <allen.sun@daocloud.io>
Upstream-commit: 7c3657065cc04af278a0f1cee99de8c2401ba0ef
Component: engine
This commit is contained in:
allencloud
2016-12-19 14:45:48 +08:00
parent 5c41fff748
commit 209ed6b4ef
17 changed files with 20 additions and 20 deletions

View File

@ -77,7 +77,7 @@ func quote(word string, buf *bytes.Buffer) {
for i := 0; i < len(word); i++ {
b := word[i]
if b == '\'' {
// Replace literal ' with a close ', a \', and a open '
// Replace literal ' with a close ', a \', and an open '
buf.WriteString("'\\''")
} else {
buf.WriteByte(b)