Fix missing parameter type argument (#940)

This commit is contained in:
Erik Schierboom 2017-10-04 01:48:50 +02:00 committed by Neal Gafter
parent 0b145f3eb4
commit 45681a8729

View file

@ -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)
{