Skip to content

Commit 23458cd

Browse files
committed
Fixed spelling
1 parent 3f5aee7 commit 23458cd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

GitItGUI.UI/Screens/RepoScreen.xaml.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ public void OpenRepo(string folderPath)
9595
int count = repoManager.UnpackedObjectCount(out string size);
9696
if (count >= 1000)
9797
{
98-
string msg = string.Format("Your repo is fragmented, would you like to optamize?\nThere are '{0}' loose objects totalling '{1}' in size.", count, size);
98+
string msg = string.Format("Your repo is fragmented, would you like to optimize?\nThere are '{0}' loose objects totalling '{1}' in size.", count, size);
9999

100100
int lfsCount = -1;
101101
string lfsSize = null, option = null;
@@ -109,7 +109,7 @@ public void OpenRepo(string folderPath)
109109
}
110110
}
111111

112-
MainWindow.singleton.ShowMessageOverlay("Optamize", msg, option, MessageOverlayTypes.OkCancel, delegate(MessageOverlayResults result)
112+
MainWindow.singleton.ShowMessageOverlay("Optimize", msg, option, MessageOverlayTypes.OkCancel, delegate(MessageOverlayResults result)
113113
{
114114
if (result == MessageOverlayResults.Ok)
115115
{

0 commit comments

Comments
 (0)