Explorar o código

errors.go: "nor" -> "not" (typo fix) (#17)

Jud White %!s(int64=9) %!d(string=hai) anos
pai
achega
0d62637d04
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      errors.go

+ 1 - 1
errors.go

@@ -36,7 +36,7 @@
 //     }
 //
 // can be inspected by errors.Cause. errors.Cause will recursively retrieve
-// the topmost error which does nor implement causer, which is assumed to be
+// the topmost error which does not implement causer, which is assumed to be
 // the original cause. For example:
 //
 //     switch err := errors.Cause(err).(type) {