Skip to content

Commit 7da7452

Browse files
author
tfreville
committed
Add go 1.13,1.14 to travis
1 parent 31b0a5b commit 7da7452

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@ language: go
33
go:
44
- "1.8.x"
55
- "1.10.x"
6+
- "1.13.x"
7+
- "1.14.x"

error_backward.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
package errors
44

5-
// Is detects whether the error is equal to a given error. Errors // Is detects whether the error is equal to a given error. Errors
6-
// are considered equal by this function if they are the same object, // are considered equal by this function if they are matched by errors.Is
7-
// or if they both contain the same error inside an errors.Error. // or if their contained errors are matched through errors.Is
5+
// Is detects whether the error is equal to a given error. Errors
6+
// are considered equal by this function if they are the same object,
7+
// or if they both contain the same error inside an errors.Error.
88
func Is(e error, original error) bool {
99
if e == original {
1010
return true

0 commit comments

Comments
 (0)