Skip to content

Commit

Permalink
Hide the InnerChord
Browse files Browse the repository at this point in the history
  • Loading branch information
veminovici committed Mar 17, 2024
1 parent cdd1aa3 commit 8a0f90b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/chords/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ pub trait Chord: IntoIterator<Item = Note> {
fn down_one_octave(self) -> Self;
}

pub struct InnerChord(Vec<Note>);
pub(crate) struct InnerChord(Vec<Note>);

impl InnerChord {
fn new(n: impl Iterator<Item = Note>) -> Self {
Expand Down

0 comments on commit 8a0f90b

Please sign in to comment.