Преглед изворни кода

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

Jud White пре 9 година
родитељ
комит
0d62637d04
1 измењених фајлова са 1 додато и 1 уклоњено
  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) {