File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ use crate::{DecodeError, Frame};
88
99pub trait StreamDecoder {
1010 /// Push received data to the decoder. The decoder stores it
11- /// internally, and makes decoded frames available through [`decode`].
11+ /// internally, and makes decoded frames available through [`decode`](StreamDecoder::decode) .
1212 fn received ( & mut self , data : & [ u8 ] ) ;
1313
1414 fn decode ( & mut self ) -> Result < Frame < ' _ > , DecodeError > ;
Original file line number Diff line number Diff line change @@ -324,7 +324,7 @@ pub use defmt_macros::timestamp;
324324
325325/// Generates a bitflags structure that can be formatted with defmt.
326326///
327- /// This macro is a wrapper around the [`bitflags`] crate, and provides an (almost) identical
327+ /// This macro is a wrapper around the [`bitflags! `] crate, and provides an (almost) identical
328328/// interface. Refer to [its documentation] for an explanation of the syntax.
329329///
330330/// [its documentation]: https://docs.rs/bitflags/1/bitflags/
You can’t perform that action at this time.
0 commit comments