Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex6323 committed Sep 29, 2022
1 parent 97233da commit 25c5f65
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bee-inx/src/block/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<BlockMetadata, Error> {
Ok(self
.client
Expand Down
2 changes: 1 addition & 1 deletion bee-inx/src/milestone/requests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ impl<T: Into<u32>> From<T> 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);

Expand Down
2 changes: 1 addition & 1 deletion bee-inx/src/raw.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ pub struct Raw<T: Packable> {
}

impl<T: Packable> Raw<T> {
/// Returns the inner byte data as-is.
/// Returns the inner byte data as-is.
#[must_use]
pub fn data(self) -> Vec<u8> {
self.data
Expand Down

0 comments on commit 25c5f65

Please sign in to comment.