Skip to content

Commit

Permalink
Merge pull request #115 from yi-yunseok/main
Browse files Browse the repository at this point in the history
Fix comments
  • Loading branch information
NiklasEi authored Jan 17, 2024
2 parents fb6bd06 + 2ec97d8 commit 359e480
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/source/mp3_loader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use crate::source::AudioSource;
#[derive(Default)]
pub struct Mp3Loader;

/// Possible errors that can be produced by [`OggLoader`]
/// Possible errors that can be produced by [`Mp3Loader`]
#[non_exhaustive]
#[derive(Debug, Error)]
pub enum Mp3LoaderError {
Expand Down
2 changes: 1 addition & 1 deletion src/source/settings_loader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ impl From<SoundSettings> for StaticSoundSettings {
}
}

/// Possible errors that can be produced by [`OggLoader`]
/// Possible errors that can be produced by [`SettingsLoader`]
#[non_exhaustive]
#[derive(Debug, Error)]
pub enum SettingsLoaderError {
Expand Down
2 changes: 1 addition & 1 deletion src/source/wav_loader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use crate::source::AudioSource;
#[derive(Default)]
pub struct WavLoader;

/// Possible errors that can be produced by [`OggLoader`]
/// Possible errors that can be produced by [`WavLoader`]
#[non_exhaustive]
#[derive(Debug, Error)]
pub enum WavLoaderError {
Expand Down

0 comments on commit 359e480

Please sign in to comment.