From 030fa861f611829f52c27c7c24b1aa046b0daebf Mon Sep 17 00:00:00 2001 From: Mandar Sahasrabuddhe Date: Sun, 26 Mar 2017 07:37:42 +0530 Subject: [PATCH] CoreFx 14486 Update API summary. (#10485) --- src/mscorlib/src/System/ReadOnlySpan.cs | 5 +++-- src/mscorlib/src/System/Span.cs | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src/mscorlib/src/System/ReadOnlySpan.cs b/src/mscorlib/src/System/ReadOnlySpan.cs index 10054c5ac7..8d0fbad0fc 100644 --- a/src/mscorlib/src/System/ReadOnlySpan.cs +++ b/src/mscorlib/src/System/ReadOnlySpan.cs @@ -114,8 +114,9 @@ namespace System /// /// Create a new read-only span over a portion of a regular managed object. This can be useful - /// if part of a managed object represents a "fixed array." This is dangerous because - /// "length" is not checked, nor is the fact that "rawPointer" actually lies within the object. + /// if part of a managed object represents a "fixed array." This is dangerous because neither the + /// is checked, nor being null, nor the fact that + /// "rawPointer" actually lies within . /// /// The managed object that contains the data to span over. /// A reference to data within that object. diff --git a/src/mscorlib/src/System/Span.cs b/src/mscorlib/src/System/Span.cs index bc590d8890..51ed0f23f0 100644 --- a/src/mscorlib/src/System/Span.cs +++ b/src/mscorlib/src/System/Span.cs @@ -131,8 +131,9 @@ namespace System /// /// Create a new span over a portion of a regular managed object. This can be useful - /// if part of a managed object represents a "fixed array." This is dangerous because - /// "length" is not checked, nor is the fact that "rawPointer" actually lies within the object. + /// if part of a managed object represents a "fixed array." This is dangerous because neither the + /// is checked, nor being null, nor the fact that + /// "rawPointer" actually lies within . /// /// The managed object that contains the data to span over. /// A reference to data within that object. -- 2.34.1