Skip to content
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

Incorrect .NET variable name CONFIGURATION_KEYS #4532

Open
dkempkes opened this issue Feb 13, 2025 · 0 comments
Open

Incorrect .NET variable name CONFIGURATION_KEYS #4532

dkempkes opened this issue Feb 13, 2025 · 0 comments

Comments

@dkempkes
Copy link

URL of the docs page

var CONFIGURATION_KEYS = new List<string> { "orderId1", "orderId2" };

How is it currently worded?
var CONFIGURATION_KEYS = new List { "orderId1", "orderId2" };

How should it be worded?
var CONFIGURATION_ITEMS = new List { "orderId1", "orderId2" };

Additional context
The variable CONFIGURATION_ITEMS is used throughout the document, but it's declared as CONFIGURATION_KEYS in the .NET example.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant