aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms/Applications
diff options
context:
space:
mode:
authorlempamo <[email protected]>2017-02-26 09:00:15 -0500
committerGitHub <[email protected]>2017-02-26 09:00:15 -0500
commitd1469e5f6b9ce90f30e25bf5b0032d8a92309855 (patch)
treee688950b8c692553cd5eb541f8b09fd5a9ab007a /ShiftOS.WinForms/Applications
parente1e0d142dc6a1c1f1b21d7ae2b7d7e699963d268 (diff)
parent46d53ae12844a095913cd0fc784446d56d16048d (diff)
downloadshiftos_thereturn-d1469e5f6b9ce90f30e25bf5b0032d8a92309855.tar.gz
shiftos_thereturn-d1469e5f6b9ce90f30e25bf5b0032d8a92309855.tar.bz2
shiftos_thereturn-d1469e5f6b9ce90f30e25bf5b0032d8a92309855.zip
Merge pull request #1 from shiftos-game/master
merge
Diffstat (limited to 'ShiftOS.WinForms/Applications')
-rw-r--r--ShiftOS.WinForms/Applications/ShiftLetters.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/ShiftOS.WinForms/Applications/ShiftLetters.cs b/ShiftOS.WinForms/Applications/ShiftLetters.cs
index aa3bf18..7a3000a 100644
--- a/ShiftOS.WinForms/Applications/ShiftLetters.cs
+++ b/ShiftOS.WinForms/Applications/ShiftLetters.cs
@@ -92,14 +92,14 @@ namespace ShiftOS.WinForms.Applications
};
foreach(var w in shiftWordlist)
{
- if (!wordlist.Contains(w.ToLower())
+ if (!wordlist.Contains(w.ToLower()))
{
wordlist.Add(w.ToLower());
}
}
foreach(var w in contributorsWordlist)
{
- if (!wordlist.Contains(w.ToLower())
+ if (!wordlist.Contains(w.ToLower()))
{
wordlist.Add(w.ToLower());
}