Skip to content

Commit c5731c9

Browse files
committed
fix ReSharper warning
1 parent 17d8083 commit c5731c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sample/Sample/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public static void Main(string[] args)
4040
new { TwentyChars = "0123456789abcdefghij" });
4141

4242
logger.Information("Destructure with max collection count:\n{@BigData}",
43-
new { TenItems = new string[] { "one", "two", "three", "four", "five", "six", "seven", "eight", "nine", "ten" } });
43+
new { TenItems = new[] { "one", "two", "three", "four", "five", "six", "seven", "eight", "nine", "ten" } });
4444

4545
logger.Information("Destructure with policy to strip password:\n{@LoginData}",
4646
new LoginData { Username = "BGates", Password = "isityearoflinuxyet" });

0 commit comments

Comments
 (0)