Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Fix Incorrect
wrapping_add
Usage in Integers Tutorial (#4295)
This pull request addresses an issue identified in the [integers tutorial](https://noir-lang.org/docs/noir/syntax/data_types/integers/), where the `wrapping_add` function was incorrectly called with a single argument `(x + y)` instead of the correct form with two separate arguments `(x, y)`. ### Changes Made The documentation has been updated to reflect the correct usage: ```diff - std::wrapping_add(x + y) + std::wrapping_add(x, y) ``` ### Acknowledgements Special thanks to @Complexlity for identifying this issue and bringing it to attention through issue #4272.
- Loading branch information