2005-04-25 Sebastien Pouliot <sebastien@ximian.com>
[mono.git] / mcs / class / corlib / System.Collections.Generic / IComparer.cs
index babea54f12444ce116d56c0ace9f1343f3e67106..2b4586ffcea929a0d99bfeea8dfc2c025853d16c 100644 (file)
@@ -38,7 +38,7 @@ namespace System.Collections.Generic {
        [CLSCompliant(false)]
        [ComVisible(false)]
        public interface IComparer<T> {
-               int Compare(T x, T y);
+               int Compare (T x, T y);
        }
 }
 #endif