From 42fa80f2ac6ed17a977ce826074bd3009593fa9d Mon Sep 17 00:00:00 2001 From: Jud White Date: Mon, 2 May 2016 14:39:29 -0500 Subject: [PATCH] README.md: "nor" -> "not", backtick causer (#16) Note there's inconsistency on the casing of `causer` in the README and function documentation. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 67bf6d8..a9f7d88 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ type causer interface { Cause() error } ``` -`errors.Cause` will recursively retrieve the topmost error which does nor implement causer, which is assumed to be the original cause. For example: +`errors.Cause` will recursively retrieve the topmost error which does not implement `causer`, which is assumed to be the original cause. For example: ``` switch err := errors.Cause(err).(type) { case *MyError: