Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,12 @@ jobs:
run: sudo apt install --yes --no-install-recommends libasound2-dev pkg-config
if: contains(matrix.os, 'ubuntu')

- name: install ${{ matrix.toolchain }} toolchain
- name: Install ${{ matrix.toolchain }} toolchain
run: rustup toolchain install ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}

- run: cargo clippy --all-features -- -D warnings
- run: |
rustup component add clippy
cargo clippy --all-features -- -D warnings
if: matrix.toolchain == 'stable' && matrix.os == 'ubuntu-latest'

- run: |
Expand Down
2 changes: 1 addition & 1 deletion src/microphone/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ where
/// Sets the buffer size for the input.
///
/// This has no impact on latency, though a too small buffer can lead to audio
/// artifacts if your program can not get samples out of the buffer before they
/// artifacts if your program can not get samples out of the buffer before they
/// get overridden again.
///
/// Normally the default input config will have this set up correctly.
Expand Down
Loading