Skip to content

Commit

Permalink
Merge pull request RustAudio#646 from rex4539/typos
Browse files Browse the repository at this point in the history
Fix typos
  • Loading branch information
est31 authored Feb 19, 2022
2 parents da3dbba + 1cd0caf commit bf026fe
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions asio-sys/src/bindings/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ impl Driver {
/// This will destroy any already allocated buffers.
///
/// If buffersize is None then the preferred buffer size from ASIO is used,
/// otherwise the desired buffersize is used if the requeted size is within
/// otherwise the desired buffersize is used if the requested size is within
/// the range of accepted buffersizes for the device.
fn create_buffers(
&self,
Expand Down Expand Up @@ -842,7 +842,7 @@ fn asio_channel_info(channel: c_long, is_input: bool) -> Result<ai::ASIOChannelI
/// If `is_input` is true, this will be queried on the input stream.
fn stream_data_type(is_input: bool) -> Result<AsioSampleType, AsioError> {
let channel_info = asio_channel_info(0, is_input)?;
Ok(FromPrimitive::from_i32(channel_info.type_).expect("unkown `ASIOSampletype` value"))
Ok(FromPrimitive::from_i32(channel_info.type_).expect("unknown `ASIOSampletype` value"))
}

/// ASIO uses null terminated c strings for driver names.
Expand Down
2 changes: 1 addition & 1 deletion src/host/alsa/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ impl Device {

let hw_params = alsa::pcm::HwParams::any(handle)?;

// TODO: check endianess
// TODO: check endianness
const FORMATS: [(SampleFormat, alsa::pcm::Format); 3] = [
//SND_PCM_FORMAT_S8,
//SND_PCM_FORMAT_U8,
Expand Down
4 changes: 2 additions & 2 deletions src/host/wasapi/device.rs
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ impl Device {
len += 1;
}

// Create the utf16 slice and covert it into a string.
// Create the utf16 slice and convert it into a string.
let name_slice = slice::from_raw_parts(ptr_utf16, len as usize);
let name_os_string: OsString = OsStringExt::from_wide(name_slice);
let name_string = match name_os_string.into_string() {
Expand Down Expand Up @@ -959,7 +959,7 @@ impl Device {
impl PartialEq for Device {
#[inline]
fn eq(&self, other: &Device) -> bool {
// Use case: In oder to check whether the default device has changed
// Use case: In order to check whether the default device has changed
// the client code might need to compare the previous default device with the current one.
// The pointer comparison (`self.device == other.device`) don't work there,
// because the pointers are different even when the default device stays the same.
Expand Down

0 comments on commit bf026fe

Please sign in to comment.