From c6b3a3bdf17f2ee7f012fff0dc0850c6c183eb69 Mon Sep 17 00:00:00 2001 From: Marius Gundersen Date: Mon, 25 Mar 2019 21:20:54 +0100 Subject: [PATCH] Force new version --- Readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Readme.md b/Readme.md index 66ae3ae..c43bddd 100644 --- a/Readme.md +++ b/Readme.md @@ -32,7 +32,7 @@ var users = await db.Users Expressionify uses the Roslyn code analyzer and generator to look for `public` `static` methods with expression bodies tagged with the `[Expressionify]` attribute. ```csharp -// ✓ OK +// ✔ OK [Expressionify] public static int ToInt(this string value) => Convert.ToInt32(value);