From 172b1fab437670fe2bf1341d25373a27eeb315d2 Mon Sep 17 00:00:00 2001 From: Jan Niehusmann Date: Sat, 8 Jul 2023 08:56:25 +0000 Subject: [PATCH] Fix a typo --- rp2040-hal/src/dma/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rp2040-hal/src/dma/mod.rs b/rp2040-hal/src/dma/mod.rs index a053f291f..bf5cc8bd4 100644 --- a/rp2040-hal/src/dma/mod.rs +++ b/rp2040-hal/src/dma/mod.rs @@ -154,7 +154,7 @@ impl ChannelRegs for Channel { /// /// The implementing type must be safe to use for DMA reads. This means: /// -/// - The range returned by rx_address_count must pointer to a valid address, +/// - The range returned by rx_address_count must point to a valid address, /// and if rx_increment is true, count must fit into the allocated buffer. /// - As long as no `&mut self` method is called on the implementing object: /// - `rx_address_count` must always return the same value, if called multiple @@ -215,7 +215,7 @@ unsafe impl ReadTarget for B { /// /// The implementing type must be safe to use for DMA writes. This means: /// -/// - The range returned by tx_address_count must pointer to a valid address, +/// - The range returned by tx_address_count must point to a valid address, /// and if tx_increment is true, count must fit into the allocated buffer. /// - As long as no other `&mut self` method is called on the implementing object: /// - `tx_address_count` must always return the same value, if called multiple