Skip to content

Commit

Permalink
ctr: fix incorrect doc comments about counter endian flavors (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChanTsune committed Jun 28, 2023
1 parent 569e4ab commit 9ac864e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ctr/src/flavors/ctr128.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ where
}
}

/// 128-bit big endian counter flavor.
/// 128-bit little endian counter flavor.
#[derive(Debug)]
pub enum Ctr128LE {}

Expand Down
2 changes: 1 addition & 1 deletion ctr/src/flavors/ctr32.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ where
}
}

/// 32-bit big endian counter flavor.
/// 32-bit little endian counter flavor.
#[derive(Debug)]
pub enum Ctr32LE {}

Expand Down
2 changes: 1 addition & 1 deletion ctr/src/flavors/ctr64.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ where
}
}

/// 64-bit big endian counter flavor.
/// 64-bit little endian counter flavor.
#[derive(Debug)]
pub enum Ctr64LE {}

Expand Down

0 comments on commit 9ac864e

Please sign in to comment.