Noticed that in lib/stupidedi/transaction_sets/005010/implementations/X279A1-HB271.rb while everywhere else in the file for this code it said "Code List Qualifier Code", in the Dependents section it'd say "Code List Qualifier"... and that bugged me out a lot. Ended up trying to make the entire repo consistent.
~/l/stupidedi ❯❯❯ ag '"Code List Qualifier"' | wc -l
40
~/l/stupidedi ❯❯❯ ag '"Code List Qualifier Code"' | wc -l
266
Command ran:
ag -l '"Code List Qualifier"' | xargs -n 1 gsed -ri 's/"Code List Qualifier"/"Code List Qualifier Code"/'
Haha, there's a decent chance I spaced out when transcribing all those PDFs, but I wouldn't be surprised to see the specification PDFs had the same inconsistencies. Thanks Meredeth!
Noticed that in
lib/stupidedi/transaction_sets/005010/implementations/X279A1-HB271.rb
while everywhere else in the file for this code it said "Code List Qualifier Code", in the Dependents section it'd say "Code List Qualifier"... and that bugged me out a lot. Ended up trying to make the entire repo consistent.Command ran:
ag -l '"Code List Qualifier"' | xargs -n 1 gsed -ri 's/"Code List Qualifier"/"Code List Qualifier Code"/'