Merge pull request #82 from lytics/spelling

fix typo
This commit is contained in:
siddontang 2014-09-27 08:25:59 +08:00
commit cb5aa517c2
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ func line(prompt string) (string, error) {
defer C.free(unsafe.Pointer(resultCString)) defer C.free(unsafe.Pointer(resultCString))
if resultCString == nil { if resultCString == nil {
return "", errors.New("quited by a signal") return "", errors.New("exiting due to signal")
} }
result := C.GoString(resultCString) result := C.GoString(resultCString)