Skip to content

Commit 8f222fb

Browse files
authored
Merge pull request #233 from Lombiq/issue/OSOE-1237
OSOE-1237: Removing unnecessary interpolated string usage
2 parents 97fc3d0 + e9adb32 commit 8f222fb

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Lombiq.HelpfulExtensions/Extensions/Widgets/Migrations.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ await _contentDefinitionManager.AlterTypeDefinitionAsync(MenuWidget, builder =>
5757
.DisplayedAs("Menu Navigation Provider Widget")
5858
.WithDescription(
5959
$"Renders a menu whose contents are populated from {nameof(INavigationProvider)} implementations " +
60-
$"that look for the \"menu\" name (as opposed to admin menu navigation providers that use the " +
61-
$"\"admin\" name).")
60+
"that look for the \"menu\" name (as opposed to admin menu navigation providers that use the " +
61+
"\"admin\" name).")
6262
);
6363

6464
await _contentDefinitionManager.AlterTypeDefinitionAsync(MarkdownWidget, builder => builder
@@ -146,8 +146,8 @@ await _contentDefinitionManager.AlterTypeDefinitionAsync(MenuWidget, builder =>
146146
.DisplayedAs("Menu Navigation Provider Widget")
147147
.WithDescription(
148148
$"Renders a menu whose contents are populated from {nameof(INavigationProvider)} implementations " +
149-
$"that look for the \"menu\" name (as opposed to admin menu navigation providers that use the " +
150-
$"\"admin\" name).")
149+
"that look for the \"menu\" name (as opposed to admin menu navigation providers that use the " +
150+
"\"admin\" name).")
151151
);
152152

153153
return 6;

0 commit comments

Comments
 (0)