Skip to content

Commit

Permalink
chore: redo typo PR by leopardracer (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench authored Dec 9, 2024
1 parent 4081673 commit 1fcb2c9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions migration_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

This lib got a big refactor for release 0.4.0.

Here's a summary of changes that will hopefull help you update.
Here's a summary of changes that will hopefully help you update.

For a quick overview, see the updated [README](./README.md).

Expand All @@ -12,7 +12,7 @@ Previously, a BigNum type was declared as:

`type MyBigNum = BigNum<3, MyParams>;`

where `3` was the number of limbs of your bignum, and `MyParams` is either a prebuild struct of `Params` from the `fields/` dir of this library, or your own custom set of params.
where `3` was the number of limbs of your bignum, and `MyParams` is either a pre-built struct of `Params` from the `fields/` dir of this library, or your own custom set of params.

Now, we need to also specify an extra param: the number of bits in the modulus.

Expand Down Expand Up @@ -98,4 +98,4 @@ fn test_sub() {
// Notice that RuntimeBigNum supports ==, +, -, *, /.
assert(result == expected);
}
```
```

0 comments on commit 1fcb2c9

Please sign in to comment.