Skip to content

Commit fd6ba4d

Browse files
author
Jan Zahradník
committed
bracket
1 parent 2caaed7 commit fd6ba4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Serilog.Settings.Configuration/Settings/Configuration/ConfigurationReader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ internal static MethodInfo SelectConfigurationMethod(IEnumerable<MethodInfo> can
377377
{
378378
var methodsByName = candidateMethods
379379
.Where(m => m.Name == name)
380-
.Select(m => $"{m.Name}({string.Join(", ", m.GetParameters().Skip(1).Select(p => p.Name))}")
380+
.Select(m => $"{m.Name}({string.Join(", ", m.GetParameters().Skip(1).Select(p => p.Name))})")
381381
.ToList();
382382
if (!methodsByName.Any())
383383
throw new MissingMethodException($"Unable to find a method called {name}. Candidate methods are:{Environment.NewLine}{string.Join(Environment.NewLine, candidateMethods)}");

0 commit comments

Comments
 (0)