Skip to content

Commit

Permalink
fix: Typo in u128 docs (#6711)
Browse files Browse the repository at this point in the history
  • Loading branch information
jfecher authored Dec 5, 2024
1 parent 2b22592 commit 37a4996
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/docs/noir/concepts/data_types/integers.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ fn main() {
You can construct a U128 from its limbs:
```rust
fn main(x: u64, y: u64) {
let x = U128::from_u64s_be(x,y);
let z = U128::from_u64s_be(x,y);
assert(z.hi == x as Field);
assert(z.lo == y as Field);
}
Expand Down

0 comments on commit 37a4996

Please sign in to comment.