Skip to content

Commit

Permalink
revert weird formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Roberts committed Jul 3, 2022
1 parent 5fee66a commit 2812ac0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sway-lib-std/src/u128.sw
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pub trait From {
impl From for U128 {
pub fn from(upper: u64, lower: u64) -> U128 {
U128 {
upper, lower,
upper, lower,
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion sway-lib-std/src/u256.sw
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ pub trait From {
impl From for U256 {
pub fn from(a: u64, b: u64, c: u64, d: u64) -> U256 {
U256 {
a, b, c, d,
a, b, c, d,
}
}
}
Expand Down

0 comments on commit 2812ac0

Please sign in to comment.