-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix method signature format and clarify functional complements #6883
Conversation
Updated according to issue #6790 to comply with official formatting standards
Specify that Take and Skip are complements when the sequences are unrepeatable
@eiriktsarpalis this just has the updated wording you suggested in the other PR. Please approve. Cheers! |
Tagging subscribers to this area: @eiriktsarpalis Issue DetailsSummaryOriginally by @steveberdy Edits to GC.xml (issue #6790)This fixes the space before the parentheses in the method signature, making it comply with official formatting rules. Edits to Enumerable.xml (issue #5152)These fixes add the slight detail that the
|
Thanks! |
Docs Build status updates of commit 45f3cac: ✅ Validation status: passed
For more details, please refer to the build report. Note: Broken links written as relative paths are included in the above build report. For broken links written as absolute paths or external URLs, see the broken link report. For any questions, please:
|
The method signature is autogenerated, so that issue will have to be fixed in our tooling, not through manual edits. |
@gewarren where would that be? |
@adegeo I think here: https://github.com/mono/api-doc-tools |
@gewarren Oh, ha, I was thinking you meant the description needed that. I'll file a bug in that repo. Opened mono/api-doc-tools#568 |
Summary
Originally by @steveberdy
Edits to GC.xml (issue #6790)
This fixes the space before the parentheses in the method signature, making it comply with official formatting rules.
Edits to Enumerable.xml (issue #5152)
These fixes add the slight detail that the
Take
andSkip
methods inSystem.Linq
are complements given first that the enumerable is not repeatable.Fixes #6790
Fixes #5152