Skip to content

Commit

Permalink
Add missing doc alias. Refs #24
Browse files Browse the repository at this point in the history
  • Loading branch information
yury committed Nov 5, 2024
1 parent 02fd567 commit 1caf504
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion cidre/src/av/audio/buffer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@ impl Buf {
pub fn audio_buffer_list_mut(&mut self) -> &mut AudioBufList;
}

define_obj_type!(pub PcmBuf(Buf));
define_obj_type!(
#[doc(alias = "AVAudioPCMBuffer")]
pub PcmBuf(Buf)
);

unsafe impl Send for PcmBuf {}
unsafe impl Sync for PcmBuf {}
Expand Down

0 comments on commit 1caf504

Please sign in to comment.