From 12451a21c4caf9039c6bd182accb77bdc1c067cc Mon Sep 17 00:00:00 2001 From: jacky <182052514@qq.com> Date: Fri, 2 Aug 2024 15:40:00 +0800 Subject: [PATCH] fix: fix some typos --- src/App.axaml.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App.axaml.cs b/src/App.axaml.cs index 3cb3909c..a8f1e32e 100644 --- a/src/App.axaml.cs +++ b/src/App.axaml.cs @@ -208,8 +208,8 @@ namespace SourceGit { if (Current?.ApplicationLifetime is IClassicDesktopStyleApplicationLifetime desktop) { - if (desktop.MainWindow?.Clipboard is { } clipbord) - await clipbord.SetTextAsync(data); + if (desktop.MainWindow?.Clipboard is { } clipboard) + await clipboard.SetTextAsync(data); } }