From 45681a8729de40960b9e1ce7772955993416e013 Mon Sep 17 00:00:00 2001 From: Erik Schierboom Date: Wed, 4 Oct 2017 01:48:50 +0200 Subject: [PATCH] Fix missing parameter type argument (#940) --- proposals/csharp-7.2/conditional-ref.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proposals/csharp-7.2/conditional-ref.md b/proposals/csharp-7.2/conditional-ref.md index eee2b4e..e1c3b3d 100644 --- a/proposals/csharp-7.2/conditional-ref.md +++ b/proposals/csharp-7.2/conditional-ref.md @@ -2,7 +2,7 @@ The pattern of binding a ref variable to one or another expression conditionally The typical workaround is to introduce a method like: ```CS -ref T Choice(bool condition, ref T consequence, ref alternative) +ref T Choice(bool condition, ref T consequence, ref T alternative) { if (condition) {