-
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
Update XsltArgumentList.xml #5121
base: main
Are you sure you want to change the base?
Conversation
As written, the documentation currently suggests only one parameter per namespace is allowed. It should be one parameter with a given name per namespace.
Docs Build status updates of commit 0eb0d49: 🕙 Pending: waiting for processors (8 builds ahead of you) |
I couldn't figure out the best area label to add to this PR. If you have write-permissions please help me learn by adding exactly one area label. |
Docs Build status updates of commit 0eb0d49: ✅ 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:
|
@@ -258,7 +258,7 @@ | |||
|
|||
The <paramref name="name" /> is not a valid name according to the W3C XML specification. | |||
|
|||
The <paramref name="namespaceUri" /> already has a parameter associated with it.</exception> | |||
The <paramref name="namespaceUri" /> already has a parameter called <paramref name="name" /> associated with it.</exception> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it meant it already has a parameter associated with the given name
The <paramref name="namespaceUri" /> already has a parameter called <paramref name="name" /> associated with it.</exception> | |
The <paramref name="namespaceUri" /> already has a parameter associated with the <paramref name="name" />.</exception> |
As written, the documentation currently suggests only one parameter per namespace is allowed. It should be one parameter with a given name per namespace.
Summary
Make clear that a duplicate name in the same namespace throws the exception.
Fixes #Issue_Number (if available)