Skip to content

Commit 5243d74

Browse files
committed
Improve code comments
1 parent 72a59ba commit 5243d74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Flow.Launcher/SearchDelayTimeWindow.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ private void SearchDelayTimeWindow_OnLoaded(object sender, RoutedEventArgs e)
2828
selected = searchDelayTimes.FirstOrDefault(x => x.Value == _pluginViewModel.PluginSearchDelayTime);
2929
}
3030
// Add default value to the beginning of the list
31-
// When _pluginViewModel.PluginSearchDelay equals null, we will select this
31+
// When _pluginViewModel.PluginSearchDelayTime equals null, we will select this
3232
searchDelayTimes.Insert(0, new SearchDelayTimeData { Display = App.API.GetTranslation("default"), LocalizationKey = "default" });
3333
selected ??= searchDelayTimes.FirstOrDefault();
3434
tbDelay.ItemsSource = searchDelayTimes;

0 commit comments

Comments
 (0)