From 9503dfb94b432b1e6e268dc415327eec507a70c2 Mon Sep 17 00:00:00 2001 From: Gormogon Date: Sun, 29 May 2016 15:47:53 -0400 Subject: Fix formatting for consistency. --- StardewModdingAPI/Extensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'StardewModdingAPI/Extensions.cs') diff --git a/StardewModdingAPI/Extensions.cs b/StardewModdingAPI/Extensions.cs index fcf7eda2..abad6ce2 100644 --- a/StardewModdingAPI/Extensions.cs +++ b/StardewModdingAPI/Extensions.cs @@ -32,7 +32,7 @@ namespace StardewModdingAPI public static string ToSingular(this IEnumerable ienum, string split = ", ") // where T : class { //Apparently Keys[] won't split normally :l - if (typeof (T) == typeof (Keys)) + if (typeof(T) == typeof(Keys)) { return string.Join(split, ienum.ToArray()); } -- cgit