Skip to content

Commit

Permalink
review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
rvilarl committed Jun 26, 2021
1 parent 164f4f2 commit ba05184
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/tables.ts
Original file line number Diff line number Diff line change
Expand Up @@ -757,7 +757,7 @@ export const Flow = {
return articulations[artic];
},

accidentalCodesAccidentals: accidentals,
accidentalMap: accidentals,

accidentalCodes(acc: string): { code: string; parenRightPaddingAdjustment: number } {
return accidentals[acc];
Expand Down
2 changes: 1 addition & 1 deletion tests/accidental_tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ const AccidentalTests = (function () {
var stave = vf.Stave({ x: 0, y: 10, width: 780 });
var score = vf.EasyScore();

var accids = Object.keys(VF.accidentalCodesAccidentals).filter(function (accid) {
var accids = Object.keys(VF.accidentalMap).filter(function (accid) {
return accid !== '{' && accid !== '}';
});

Expand Down

0 comments on commit ba05184

Please sign in to comment.