@@ -8,34 +8,34 @@ public static class StringViewExtensions
88 /// <summary>
99 /// Creates a new <see cref="StringView"/> over a string.
1010 /// </summary>
11- /// <param name="value">The target string.</param>
11+ /// <param name="value">The string to create a view over .</param>
1212 /// <returns>
13- /// The read-only view representation of the string.
13+ /// A <see cref="StringView"/> representing the specified string.
1414 /// </returns>
1515 public static StringView AsView ( this string ? value ) =>
1616 new ( value ?? "" ) ;
1717
1818 /// <summary>
19- /// Creates a new <see cref="StringView"/> over a portion of the target string
20- /// from a specified position to the end of the string.
19+ /// Creates a new <see cref="StringView"/> over a portion of the specified string
20+ /// starting at a specified position to the end of the string.
2121 /// </summary>
22- /// <param name="value">The target string.</param>
23- /// <param name="index">The index at which to begin this slice .</param>
22+ /// <param name="value">The string to create a view over .</param>
23+ /// <param name="index">The zero-based starting position of the view in the string .</param>
2424 /// <returns>
25- /// The read-only view representation of the string.
25+ /// A <see cref="StringView"/> representing the specified portion of the string.
2626 /// </returns>
2727 public static StringView AsView ( this string ? value , int index ) =>
2828 new ( value ?? "" , index ) ;
2929
3030 /// <summary>
31- /// Creates a new <see cref="StringView"/> over a portion of the target string
32- /// from a specified position for a specified number of characters.
31+ /// Creates a new <see cref="StringView"/> over a portion of the specified string
32+ /// starting at a specified position for a specified number of characters.
3333 /// </summary>
34- /// <param name="value">The target string.</param>
35- /// <param name="index">The index at which to begin this slice .</param>
36- /// <param name="length">The desired length for the slice .</param>
34+ /// <param name="value">The string to create a view over .</param>
35+ /// <param name="index">The zero-based starting position of the view in the string .</param>
36+ /// <param name="length">The number of characters to include in the view .</param>
3737 /// <returns>
38- /// The read-only view representation of the string.
38+ /// A <see cref="StringView"/> representing the specified portion of the string.
3939 /// </returns>
4040 public static StringView AsView ( this string ? value , int index , int length ) =>
4141 new ( value ?? "" , index , length ) ;
0 commit comments