Skip to content

Commit

Permalink
Fix pub/priv
Browse files Browse the repository at this point in the history
  • Loading branch information
tgross35 committed Aug 19, 2024
1 parent 892f80b commit d3ce466
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/float/div.rs
Original file line number Diff line number Diff line change
Expand Up @@ -584,7 +584,7 @@ where
/// the next `x` as a UQ0 number.
///
/// This is the `x_{n+1} = 2*x_n - b*x_n^2` algorithm, implemented as `x_n * (2 - b*x_n)`.
pub fn next_guess<I>(x_uq0: I, b_uq1: I) -> I
fn next_guess<I>(x_uq0: I, b_uq1: I) -> I
where
I: Int + HInt,
<I as HInt>::D: ops::Shr<u32, Output = <I as HInt>::D>,
Expand Down

0 comments on commit d3ce466

Please sign in to comment.