Skip to content
Open
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
4 changes: 2 additions & 2 deletions source/postcard/src/ser/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ where
flavors::crc::to_vec_u32(value, digest)
}

/// Conveniently serialize a `T` to a `heapless::Vec<u8>`, with the `Vec` containing
/// Conveniently serialize a `T` to a `std::vec::Vec<u8>`, with the `Vec` containing
/// data followed by a 32-bit CRC. The CRC bytes are included in the output `Vec`.
///
/// ## Example
Expand Down Expand Up @@ -416,7 +416,7 @@ where
flavors::crc::to_allocvec_u32(value, digest)
}

/// Conveniently serialize a `T` to a `heapless::Vec<u8>`, with the `Vec` containing
/// Conveniently serialize a `T` to an `alloc::vec::Vec<u8>`, with the `Vec` containing
/// data followed by a 32-bit CRC. The CRC bytes are included in the output `Vec`.
///
/// ## Example
Expand Down
Loading