From: Mandar Sahasrabuddhe Date: Sun, 26 Mar 2017 02:07:42 +0000 (+0530) Subject: CoreFx 14486 Update API summary. (dotnet/coreclr#10485) X-Git-Tag: submit/tizen/20210909.063632~11030^2~7546 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=44c604e54879458b12c3d5ab73a2cd1a46380f93;p=platform%2Fupstream%2Fdotnet%2Fruntime.git CoreFx 14486 Update API summary. (dotnet/coreclr#10485) Commit migrated from https://github.com/dotnet/coreclr/commit/030fa861f611829f52c27c7c24b1aa046b0daebf --- 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.