Fixed typo

This commit is contained in:
yankejustin 2015-07-28 15:12:18 -04:00
parent cb01565b15
commit ec39581dc3
1 changed files with 2 additions and 2 deletions

View File

@ -104,13 +104,13 @@ namespace xServer.Forms
}
}
public void AddMonitors(int montiors)
public void AddMonitors(int monitors)
{
try
{
cbMonitors.Invoke((MethodInvoker)delegate
{
for (int i = 0; i < montiors; i++)
for (int i = 0; i < monitors; i++)
cbMonitors.Items.Add(string.Format("Monitor {0}", i + 1));
cbMonitors.SelectedIndex = 0;
});