Possible misunderstanding of parameter scope introduced with editorial change
In https://code.asam.net/simulation/openscenario/openscenario-xml/-/commit/03cde0c12c3077cc93ceb1fd348cf39c07b5716e a number of editorial changes were made among them the seemingly minor change:
"The scope of a parameter is the subtree rooted in the element where the ParameterDeclarations
is located." --> "The scope of a parameter is the subtree rooted in the element where the ParameterDeclaration
is located." (Possibly changed plural ParameterDeclarations to singular ParameterDeclaration for better readibility. However, this changes the understanding of the scope of the locally defined parameters as "ParameterDeclaration" is a child element of "ParameterDeclarations". One may now think that local "ParameterDeclaration" are only valid within their "ParameterDeclarations" parent (making them essentially useless).
Suggested change is to bring back the plural but add "element" for better readibility: "The scope of a parameter is the subtree rooted in the element where the ParameterDeclarations
element is located."