Skip to content

Commit a156ae2

Browse files
committed
build issue
1 parent 28c6056 commit a156ae2

File tree

1 file changed

+1
-1
lines changed
  • docs/csharp/fundamentals/coding-style/snippets/coding-conventions

1 file changed

+1
-1
lines changed

docs/csharp/fundamentals/coding-style/snippets/coding-conventions/program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ public class List<T> { /*...*/ }
438438
//</TypeParametersOne>
439439

440440
//<TypeParametersTwo>
441-
public int IComparer<T>() => 0
441+
public int IComparer<T>() => 0;
442442
public delegate bool Predicate<T>(T item);
443443
public struct Nullable<T> where T : struct { /*...*/ }
444444
//</TypeParametersTwo>

0 commit comments

Comments
 (0)