Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/System.Private.CoreLib/shared/System/IComparable.cs')
-rw-r--r--src/System.Private.CoreLib/shared/System/IComparable.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/System.Private.CoreLib/shared/System/IComparable.cs b/src/System.Private.CoreLib/shared/System/IComparable.cs
index 72aeeb027..cf71953e2 100644
--- a/src/System.Private.CoreLib/shared/System/IComparable.cs
+++ b/src/System.Private.CoreLib/shared/System/IComparable.cs
@@ -18,7 +18,7 @@ namespace System
// if this is equal to object, or a value greater than zero
// if this is greater than object.
//
- int CompareTo(Object obj);
+ int CompareTo(object obj);
}
// Generic version of IComparable.