Skip to content

Commit 89d5cf9

Browse files
authored
Merge pull request #43 from Flow-Launcher/blank_space
Fix blank space
2 parents f2cba56 + 5687216 commit 89d5cf9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Flow.Launcher.Localization.SourceGenerators/Localize/PublicApiSourceGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ private void GenerateSource(
8888
sourceBuilder.AppendLine($"{tabString}/// <summary>");
8989
sourceBuilder.AppendLine($"{tabString}/// Get <see cref=\"Flow.Launcher.Plugin.IPublicAPI\"> instance");
9090
sourceBuilder.AppendLine($"{tabString}/// </summary>");
91-
sourceBuilder.AppendLine($"{tabString}internal static Flow.Launcher.Plugin.IPublicAPI {Constants.PublicApiInternalPropertyName} =>" +
91+
sourceBuilder.AppendLine($"{tabString}internal static Flow.Launcher.Plugin.IPublicAPI {Constants.PublicApiInternalPropertyName} => " +
9292
$"{Constants.PublicApiPrivatePropertyName} ??= CommunityToolkit.Mvvm.DependencyInjection.Ioc.Default.GetRequiredService<Flow.Launcher.Plugin.IPublicAPI>();");
9393
sourceBuilder.AppendLine($"}}");
9494

0 commit comments

Comments
 (0)