Boolean -> bool
authorFelipe Fujiy Pessoto <felipepessoto@hotmail.com>
Tue, 31 Jan 2017 21:43:59 +0000 (19:43 -0200)
committerFelipe Fujiy Pessoto <felipepessoto@hotmail.com>
Fri, 10 Feb 2017 18:37:14 +0000 (16:37 -0200)
Commit migrated from https://github.com/dotnet/coreclr/commit/617e0ce21b37eefb8379885343bddfc88388776f

src/coreclr/src/mscorlib/src/System/String.Comparison.cs

index de400e8..eb451fc 100644 (file)
@@ -780,7 +780,7 @@ namespace System
         }
 
         [Pure]
-        public Boolean EndsWith(char value) {
+        public bool EndsWith(char value) {
             int thisLen = this.Length;
             return thisLen != 0 && this[thisLen - 1] == value;
         }
@@ -1133,6 +1133,6 @@ namespace System
         }
 
         [Pure]
-        public Boolean StartsWith(char value) => Length != 0 && m_firstChar == value;
+        public bool StartsWith(char value) => Length != 0 && m_firstChar == value;
     }
 }
\ No newline at end of file