From ab6119a38fa5791858610b672e56831421135d8c Mon Sep 17 00:00:00 2001 From: Taylor Cramer Date: Mon, 24 Oct 2016 17:33:41 -0700 Subject: [PATCH] Fix coercin -> coercion typo --- src/librustc_typeck/check/coercion.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/librustc_typeck/check/coercion.rs b/src/librustc_typeck/check/coercion.rs index 02a65e249c82..ccc944813ff1 100644 --- a/src/librustc_typeck/check/coercion.rs +++ b/src/librustc_typeck/check/coercion.rs @@ -196,7 +196,7 @@ impl<'f, 'gcx, 'tcx> Coerce<'f, 'gcx, 'tcx> { // Function items are coercible to any closure // type; function pointers are not (that would // require double indirection). - // Additionally, we permit coercin of function + // Additionally, we permit coercion of function // items to drop the unsafe qualifier. self.coerce_from_fn_item(a, a_f, b) }