From 1ef1c5cb7ea8424a6700a0765056e3446089b44d Mon Sep 17 00:00:00 2001 From: k-hara Date: Tue, 20 Sep 2011 23:12:51 +0900 Subject: [PATCH] Fix wrong spelling --- std/conv.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/std/conv.d b/std/conv.d index 564a26b8aef..24cb45e548e 100644 --- a/std/conv.d +++ b/std/conv.d @@ -587,7 +587,7 @@ T toImpl(T, S)(S value) enum isModConvertible = is(Unqual!S == S); } } - static assert(isModConvertible, "Bad modifier convertion: "~S.stringof~" to "~T.stringof); + static assert(isModConvertible, "Bad modifier conversion: "~S.stringof~" to "~T.stringof); auto result = cast(T) value; if (!result && value)