From 617e0ce21b37eefb8379885343bddfc88388776f Mon Sep 17 00:00:00 2001 From: Felipe Fujiy Pessoto Date: Tue, 31 Jan 2017 19:43:59 -0200 Subject: [PATCH] Boolean -> bool --- src/mscorlib/src/System/String.Comparison.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mscorlib/src/System/String.Comparison.cs b/src/mscorlib/src/System/String.Comparison.cs index de400e8..eb451fc 100644 --- a/src/mscorlib/src/System/String.Comparison.cs +++ b/src/mscorlib/src/System/String.Comparison.cs @@ -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 -- 2.7.4