From: Stephen Toub Date: Thu, 1 Mar 2018 04:18:35 +0000 (-0500) Subject: Fix build break in System.Memory due to incorrect XML comments X-Git-Tag: accepted/tizen/unified/20190422.045933~2816 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ced365addfd19c3b5fa81f9e2f4aa1bad83cb87c;p=platform%2Fupstream%2Fcoreclr.git Fix build break in System.Memory due to incorrect XML comments Signed-off-by: dotnet-bot-corefx-mirror --- diff --git a/src/mscorlib/shared/System/MemoryExtensions.cs b/src/mscorlib/shared/System/MemoryExtensions.cs index 427f05c..b625ece 100644 --- a/src/mscorlib/shared/System/MemoryExtensions.cs +++ b/src/mscorlib/shared/System/MemoryExtensions.cs @@ -746,10 +746,10 @@ namespace System /// Creates a new Span over the portion of the target array beginning /// at 'start' index and ending at 'end' index (exclusive). /// - /// The target array. + /// The target array. /// The index at which to begin the Span. - /// Returns default when is null. - /// Thrown when is covariant and array's type is not exactly T[]. + /// Returns default when is null. + /// Thrown when is covariant and array's type is not exactly T[]. /// /// Thrown when the specified or end index is not in the range (<0 or >=segment.Count). /// @@ -766,11 +766,11 @@ namespace System /// Creates a new Span over the portion of the target array beginning /// at 'start' index and ending at 'end' index (exclusive). /// - /// The target array. + /// The target array. /// The index at which to begin the Span. /// The number of items in the Span. - /// Returns default when is null. - /// Thrown when is covariant and array's type is not exactly T[]. + /// Returns default when is null. + /// Thrown when is covariant and array's type is not exactly T[]. /// /// Thrown when the specified or end index is not in the range (<0 or >=segment.Count). /// @@ -854,10 +854,10 @@ namespace System /// Creates a new memory over the portion of the target array beginning /// at 'start' index and ending at 'end' index (exclusive). /// - /// The target array. + /// The target array. /// The index at which to begin the memory. - /// Returns default when is null. - /// Thrown when is covariant and array's type is not exactly T[]. + /// Returns default when is null. + /// Thrown when is covariant and array's type is not exactly T[]. /// /// Thrown when the specified or end index is not in the range (<0 or >=segment.Count). /// @@ -873,11 +873,11 @@ namespace System /// Creates a new memory over the portion of the target array beginning /// at 'start' index and ending at 'end' index (exclusive). /// - /// The target array. + /// The target array. /// The index at which to begin the memory. /// The number of items in the memory. - /// Returns default when is null. - /// Thrown when is covariant and array's type is not exactly T[]. + /// Returns default when is null. + /// Thrown when is covariant and array's type is not exactly T[]. /// /// Thrown when the specified or end index is not in the range (<0 or >=segment.Count). ///