This repository was archived by the owner on Mar 11, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
tlv-account-resolution/src Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ impl PreciseNumber {
37
37
38
38
/// Desired precision for the correction factor applied during each
39
39
/// iteration of checked_pow_approximation. Once the correction factor is
40
- /// smaller than this number, or we reach the maxmium number of iterations,
40
+ /// smaller than this number, or we reach the maximum number of iterations,
41
41
/// the calculation ends.
42
42
fn precision ( ) -> InnerUint {
43
43
InnerUint :: from ( 100 )
@@ -62,7 +62,7 @@ impl PreciseNumber {
62
62
63
63
/// Maximum base allowed when calculating exponents in checked_pow_fraction
64
64
/// and checked_pow_approximation. The calculation use a Taylor Series
65
- /// approxmation around 1, which converges for bases between 0 and 2. See
65
+ /// approximation around 1, which converges for bases between 0 and 2. See
66
66
/// https://en.wikipedia.org/wiki/Binomial_series#Conditions_for_convergence
67
67
/// for more information.
68
68
fn max_pow_base ( ) -> InnerUint {
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ pub enum Seed {
44
44
/// * 1 - Length of literal
45
45
/// * N - Literal bytes themselves
46
46
Literal {
47
- /// The literal value repesented as a vector of bytes.
47
+ /// The literal value represented as a vector of bytes.
48
48
///
49
49
/// For example, if a literal value is a string literal,
50
50
/// such as "my-seed", this value would be
You can’t perform that action at this time.
0 commit comments