fix: correct cardinality typos (ZerotoMany→ZeroToMany, ZerotToOne→ZeroToOne)#280
Open
algojogacor wants to merge 1 commit into
Open
fix: correct cardinality typos (ZerotoMany→ZeroToMany, ZerotToOne→ZeroToOne)#280algojogacor wants to merge 1 commit into
algojogacor wants to merge 1 commit into
Conversation
ZerotoMany → ZeroToMany ZerotToOne → ZeroToOne Closes admin-shell-io#279
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes #279
The Maintenance Instructions template JSON file contains typos in cardinality qualifier values: "ZerotoMany" and "ZerotToOne" instead of the correct CamelCase "ZeroToMany" and "ZeroToOne".
Root Cause
In
published/Maintenance Instructions/1/0/IDTA_02018_Template_MaintenanceInstructions.json, 12 cardinality qualifier entries use incorrect casing:"value": "ZerotoMany"(1 occurrence, line 588) — missing capital "M""value": "ZerotToOne"(11 occurrences) — missing capital "O" in "Zero" and lowercase "t" in "To"These appear to be copy-paste artifacts where the original CamelCase was lost.
Fix
Applied targeted find-and-replace across all 12 occurrences in the JSON file:
"ZerotoMany"→"ZeroToMany"(1 place)"ZerotToOne"→"ZeroToOne"(11 places)All other cardinality values in the file (e.g., "One", "ZeroToMany", "OneToMany") already use correct CamelCase — these 12 were the only outliers.
Changes
published/Maintenance Instructions/1/0/IDTA_02018_Template_MaintenanceInstructions.json: fix cardinality value casing (+12 −12lines)Testing