From bd1bc87e521df5ff17ce83ce38b1d825ab807c4a Mon Sep 17 00:00:00 2001 From: Stephen Toub Date: Wed, 28 Feb 2018 23:18:35 -0500 Subject: Fix build break in System.Memory due to incorrect XML comments Signed-off-by: dotnet-bot-corefx-mirror Signed-off-by: dotnet-bot --- .../shared/System/MemoryExtensions.cs | 24 +++++++++++----------- 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'src') diff --git a/src/System.Private.CoreLib/shared/System/MemoryExtensions.cs b/src/System.Private.CoreLib/shared/System/MemoryExtensions.cs index 427f05c4c..b625ece7e 100644 --- a/src/System.Private.CoreLib/shared/System/MemoryExtensions.cs +++ b/src/System.Private.CoreLib/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). /// -- cgit v1.2.3