Fixed spelling

This commit is contained in:
Thorsten Sommer 2026-06-09 12:43:45 +02:00
parent a41c2e3350
commit 1aab6f7b86
Signed by untrusted user who does not match committer: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -25,7 +25,7 @@ public partial class ConfigurationShortcut : ConfigurationBaseCore
public Func<string> Shortcut { get; set; } = () => string.Empty;
/// <summary>
/// An action which is called when the shortcut was changed.
/// An action that is called when the shortcut was changed.
/// </summary>
[Parameter]
public Action<string> ShortcutUpdate { get; set; } = _ => { };
@ -43,7 +43,7 @@ public partial class ConfigurationShortcut : ConfigurationBaseCore
public Func<string> ShortcutDisplaySource { get; set; } = () => string.Empty;
/// <summary>
/// An action which is called when the user-facing shortcut label was changed.
/// An action that is called when the user-facing shortcut label was changed.
/// </summary>
[Parameter]
public Action<string, string> ShortcutDisplayUpdate { get; set; } = (_, _) => { };