mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-04 20:24:10 +00:00
Obsessive whitespace fix.
This commit is contained in:
parent
5d3d114628
commit
1c9637490c
1 changed files with 2 additions and 2 deletions
|
|
@ -121,7 +121,7 @@ impl Index<usize> for CompressedEdwardsY {
|
|||
|
||||
impl CompressedEdwardsY {
|
||||
/// View this `CompressedEdwardsY` as an array of bytes.
|
||||
pub fn to_bytes(&self) -> [u8;32] {
|
||||
pub fn to_bytes(&self) -> [u8; 32] {
|
||||
self.0
|
||||
}
|
||||
|
||||
|
|
@ -165,7 +165,7 @@ pub struct CompressedMontgomeryU(pub [u8; 32]);
|
|||
|
||||
impl CompressedMontgomeryU {
|
||||
/// View this `CompressedMontgomeryU` as an array of bytes.
|
||||
pub fn to_bytes(&self) -> [u8;32] {
|
||||
pub fn to_bytes(&self) -> [u8; 32] {
|
||||
self.0
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue