in this file: [src/rust/engine/functions/note.rs](https://github.com/devaloop-labs/devalang/blob/main/src/rust/engine/functions/note.rs) first we have `let note = note.to_uppercase();` but later ` Some('b') => { offset = -1; octave_start = 2; } ` maybe we could change it to `Some('b') | Some('B') => {`?
in this file: src/rust/engine/functions/note.rs
first we have
let note = note.to_uppercase();but later
Some('b') => { offset = -1; octave_start = 2; }maybe we could change it to
Some('b') | Some('B') => {?