Open steveharter opened 6 days ago
I couldn't figure out the best area label to add to this issue. If you have write-permissions please help me learn by adding exactly one area label.
I couldn't figure out the best area label to add to this issue. If you have write-permissions please help me learn by adding exactly one area label.
Tagging subscribers to this area: @dotnet/area-system-runtime
Type of issue
Typo
Description
For the
ReadOnlySpan<T>(T[]?)
constructor that can take a null array, the doc saysIf the array is null, this constructor returns a null ReadOnlySpan<T>.
However, the method instead creates an empty span. A span, being a
ref struct
cannot be nullable. It should say "This method returns default when array is null." as described in the other constructorReadOnlySpan<T>(T[], Int32, Int32)
.Page URL
https://learn.microsoft.com/en-us/dotnet/api/system.readonlyspan-1.-ctor?view=net-8.0
Content source URL
https://github.com/dotnet/dotnet-api-docs/blob/main/xml/System/ReadOnlySpan`1.xml
Document Version Independent Id
d7b1c5b6-cdec-e856-0d48-533861086507
Article author
@steveharter