Skip to content

Commit 4ab356b

Browse files
committed
LuceneDev1006Sample.cs: Fixed issue with doubling of quotes that caused the sample not to compile.
1 parent 8b84dc2 commit 4ab356b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Lucene.Net.CodeAnalysis.Dev.Sample/LuceneDev1006Sample.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ public class LuceneDev1006Sample
2626

2727
public string DescribeConcatenation()
2828
{
29-
return "" level "" + levelBottom + "" to "" + maxLevel;
29+
return " level " + levelBottom + " to " + maxLevel;
3030
}
3131

3232
public string DescribeInterpolation()
3333
{
34-
return $"" level {levelBottom} to {maxLevel}"";
34+
return $" level {levelBottom} to {maxLevel}";
3535
}
3636
}

0 commit comments

Comments
 (0)