Skip to content

Commit cbecaaf

Browse files
committed
Fixed typos in comments
1 parent 0116279 commit cbecaaf

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

sample/AppConfigDemo/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public static class Program
1414

1515
public static void Main()
1616
{
17-
// Legacy interace - do not use this anymore
17+
// Legacy interface - do not use this anymore
1818
//Log.Logger = new LoggerConfiguration().WriteTo
1919
// .MSSqlServer(
2020
// connectionString: _connectionString,

sample/CombinedConfigDemo/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public static void Main()
2323
var columnOptionsSection = configuration.GetSection("Serilog:ColumnOptions");
2424
var sinkOptionsSection = configuration.GetSection("Serilog:SinkOptions");
2525

26-
// Legacy interace - do not use this anymore
26+
// Legacy interface - do not use this anymore
2727
//Log.Logger = new LoggerConfiguration()
2828
// .WriteTo.MSSqlServer(
2929
// connectionString: _connectionStringName,

sample/CustomLogEventFormatterDemo/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public static void Main()
1919
var customFormatter = new FlatLogEventFormatter();
2020
var levelSwitch = new LoggingLevelSwitch();
2121

22-
// Legacy interace - do not use this anymore
22+
// Legacy interface - do not use this anymore
2323
//Log.Logger = new LoggerConfiguration()
2424
// .WriteTo.MSSqlServer(_connectionString,
2525
// _tableName,

0 commit comments

Comments
 (0)