Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
feldspath committed Oct 7, 2024
1 parent aa55e5f commit a70cb29
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/conductor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ pub trait Conductor {
fn init(&mut self, context: &mut Context<impl MidiConnection>);
/// This function will be called at every midi clock. All the notes sent to the MidiController
/// (`context.midi_controller`) will be played at the next midi clock.
///
///
/// __Warning: if this function takes too long, the midi clock might be late. Be careful not to
/// do any intensive computation, call sleep(), or wait for a lock inside this function.__
fn update(&mut self, context: &mut Context<impl MidiConnection>);
Expand Down
2 changes: 1 addition & 1 deletion src/note.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ impl Note {
/// # Example
/// ```
/// use mseq::Note;
///
///
/// let note = Note::G;
/// let octave = 4;
/// let (new_note, new_octave) = note.add_semitone(octave, 5);
Expand Down

0 comments on commit a70cb29

Please sign in to comment.