File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -32,10 +32,12 @@ jobs:
3232 run : sudo apt install --yes --no-install-recommends libasound2-dev pkg-config
3333 if : contains(matrix.os, 'ubuntu')
3434
35- - name : install ${{ matrix.toolchain }} toolchain
35+ - name : Install ${{ matrix.toolchain }} toolchain
3636 run : rustup toolchain install ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
3737
38- - run : cargo clippy --all-features -- -D warnings
38+ - run : |
39+ rustup component add clippy
40+ cargo clippy --all-features -- -D warnings
3941 if: matrix.toolchain == 'stable' && matrix.os == 'ubuntu-latest'
4042
4143 - run : |
Original file line number Diff line number Diff line change @@ -415,7 +415,7 @@ where
415415 /// Sets the buffer size for the input.
416416 ///
417417 /// This has no impact on latency, though a too small buffer can lead to audio
418- /// artifacts if your program can not get samples out of the buffer before they
418+ /// artifacts if your program can not get samples out of the buffer before they
419419 /// get overridden again.
420420 ///
421421 /// Normally the default input config will have this set up correctly.
You can’t perform that action at this time.
0 commit comments