From 44c604e54879458b12c3d5ab73a2cd1a46380f93 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. (dotnet/coreclr#10485) Commit migrated from https://github.com/dotnet/coreclr/commit/030fa861f611829f52c27c7c24b1aa046b0daebf --- src/coreclr/src/mscorlib/src/System/ReadOnlySpan.cs | 5 +++-- src/coreclr/src/mscorlib/src/System/Span.cs | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src/coreclr/src/mscorlib/src/System/ReadOnlySpan.cs b/src/coreclr/src/mscorlib/src/System/ReadOnlySpan.cs index 10054c5..8d0fbad 100644 --- a/src/coreclr/src/mscorlib/src/System/ReadOnlySpan.cs +++ b/src/coreclr/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/coreclr/src/mscorlib/src/System/Span.cs b/src/coreclr/src/mscorlib/src/System/Span.cs index bc590d8..51ed0f2 100644 --- a/src/coreclr/src/mscorlib/src/System/Span.cs +++ b/src/coreclr/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.7.4