fix mispell (#54)

* fix mispell

* update golint path in travis

* Golint requires Go 1.9 or later

* install golint only if go >=1.9

* exclude go 1.7 and go 1.8 for golint

* add build on go 1.10.x
This commit is contained in:
Cyrille Hemidy
2018-10-24 23:55:16 +02:00
committed by Sebastian Zagrodzki
parent 15d2fa288b
commit 593cfb67e9
5 changed files with 13 additions and 10 deletions

View File

@@ -65,7 +65,7 @@ func Example_simple() {
if numBytes != 5 {
log.Fatalf("%s.Write([5]): only %d bytes written, returned error is %v", ep, numBytes, err)
}
fmt.Println("5 bytes successfuly sent to the endpoint")
fmt.Println("5 bytes successfully sent to the endpoint")
}
// This example demostrates the full API for accessing endpoints.
@@ -138,7 +138,7 @@ func Example_complex() {
if readBytes == 0 {
log.Fatalf("IN endpoint 6 returned 0 bytes of data.")
}
// writeBytes might be smaller than the buffer size if an error occured. writeBytes might be greater than zero even if err is not nil.
// writeBytes might be smaller than the buffer size if an error occurred. writeBytes might be greater than zero even if err is not nil.
writeBytes, err := epOut.Write(buf[:readBytes])
if err != nil {
fmt.Println("Write returned an error:", err)