diff --git a/bee-inx/src/block/mod.rs b/bee-inx/src/block/mod.rs index 06d1093be..454738cf6 100644 --- a/bee-inx/src/block/mod.rs +++ b/bee-inx/src/block/mod.rs @@ -59,7 +59,7 @@ impl Inx { .into()) } - /// Requests the metadata of the block with the given block id. + /// Requests the metadata of the block with the given block id. pub async fn read_block_metadata(&mut self, block_id: bee::BlockId) -> Result { Ok(self .client diff --git a/bee-inx/src/milestone/requests.rs b/bee-inx/src/milestone/requests.rs index aae957233..100909331 100644 --- a/bee-inx/src/milestone/requests.rs +++ b/bee-inx/src/milestone/requests.rs @@ -33,7 +33,7 @@ impl> From for MilestoneRequest { } } -/// A request for a range of milestones by [`MilestoneIndex`]. +/// A request for a range of milestones by [`bee::MilestoneIndex`]. #[derive(Clone, Debug, PartialEq)] pub struct MilestoneRangeRequest(inx::MilestoneRangeRequest); diff --git a/bee-inx/src/raw.rs b/bee-inx/src/raw.rs index 7242697ac..db29cf7a1 100644 --- a/bee-inx/src/raw.rs +++ b/bee-inx/src/raw.rs @@ -15,7 +15,7 @@ pub struct Raw { } impl Raw { - /// Returns the inner byte data as-is. + /// Returns the inner byte data as-is. #[must_use] pub fn data(self) -> Vec { self.data