Skip to content

Commit 67f5bf1

Browse files
committed
dotnet format
1 parent 9d2597a commit 67f5bf1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/docs-builder/Http/DocumentationWebHost.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,8 @@ public EmbeddedOrPhysicalFileProvider(BuildContext context)
142142

143143
private static T? Yield<T>(string arg, Func<string, PhysicalFileProvider, T?> predicate, PhysicalFileProvider? provider)
144144
{
145-
if (provider is null) return default;
145+
if (provider is null)
146+
return default;
146147
var result = predicate(arg, provider);
147148
return result ?? default;
148149
}

0 commit comments

Comments
 (0)