Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: typos in documentation files #57

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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-build 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);
}
```
```