CoreFx 14486 Update API summary. (#10485)
authorMandar Sahasrabuddhe <WinCPP@users.noreply.github.com>
Sun, 26 Mar 2017 02:07:42 +0000 (07:37 +0530)
committerAhson Ahmed Khan <ahsonkhan@users.noreply.github.com>
Sun, 26 Mar 2017 02:07:42 +0000 (19:07 -0700)
src/mscorlib/src/System/ReadOnlySpan.cs
src/mscorlib/src/System/Span.cs

index 10054c5..8d0fbad 100644 (file)
@@ -114,8 +114,9 @@ namespace System
 
         /// <summary>
         /// 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
+        /// <paramref name="length"/> is checked, nor <paramref name="obj"/> being null, nor the fact that
+        /// "rawPointer" actually lies within <paramref name="obj"/>.
         /// </summary>
         /// <param name="obj">The managed object that contains the data to span over.</param>
         /// <param name="objectData">A reference to data within that object.</param>
index bc590d8..51ed0f2 100644 (file)
@@ -131,8 +131,9 @@ namespace System
 
         /// <summary>
         /// 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
+        /// <paramref name="length"/> is checked, nor <paramref name="obj"/> being null, nor the fact that
+        /// "rawPointer" actually lies within <paramref name="obj"/>.
         /// </summary>
         /// <param name="obj">The managed object that contains the data to span over.</param>
         /// <param name="objectData">A reference to data within that object.</param>