Skip to content

Commit

Permalink
Typo fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ahicks92 committed Dec 24, 2024
1 parent 79fc6fa commit 7447779
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crates/synthizer/src/sample_sources/encoded/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ use sealed::*;
/// Get a source implementation for a stream of encoded bytes.
///
/// This currently produces sources which are not realtime-safe, and which do not support precise seeking. The backing
/// implementation is Symphonia but is subject to change, in particular because we will propbably carve out subsets with
/// implementation is Symphonia but is subject to change, in particular because we will probably carve out subsets with
/// specific libraries in order to do better for formats where we can be realtime-safe.
///
/// The generic parameter is using a sealed trait with a fixed set of impls. You may pass:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ use super::driver::Driver;
// required. For streaming sources, we can push pitch bending to the background thread if we ever decide to go there,
// then tell users if they want no latency they need to use a buffer.
//
// This leaves the question of whatb to do in two cases: what happens when the source dies? How do we get user commands
// This leaves the question of what to do in two cases: what happens when the source dies? How do we get user commands
// to the background thread?
//
// Source death is easy. In that case, we simply close the spsc ring (which is why audio_synchronization supports
Expand Down Expand Up @@ -61,7 +61,6 @@ fn merge_opts<T>(first: Option<T>, second: Option<T>) -> Option<T> {
}

/// A patch to apply to the background thread.
#[derive(Clone, Debug, Default)]
struct ConfigPatch {
loop_spec: Option<LoopSpec>,
Expand Down

0 comments on commit 7447779

Please sign in to comment.