From 1fcb2c91a9a471e511f313c15f463c3c6f987f14 Mon Sep 17 00:00:00 2001 From: Tom French <15848336+TomAFrench@users.noreply.github.com> Date: Mon, 9 Dec 2024 12:18:57 +0000 Subject: [PATCH] chore: redo typo PR by leopardracer (#75) --- migration_notes.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/migration_notes.md b/migration_notes.md index abb1545d..1f17e18c 100644 --- a/migration_notes.md +++ b/migration_notes.md @@ -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). @@ -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. @@ -98,4 +98,4 @@ fn test_sub() { // Notice that RuntimeBigNum supports ==, +, -, *, /. assert(result == expected); } -``` \ No newline at end of file +```