Skip to content

Commit

Permalink
math.big: fix inner deprecated binary_str use (#18911)
Browse files Browse the repository at this point in the history
  • Loading branch information
phoreverpheebs committed Jul 20, 2023
1 parent 09d743a commit f9906f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vlib/math/big/integer.v
Expand Up @@ -803,7 +803,7 @@ pub fn (integer Integer) radix_str(radix u32) string {
}
return match radix {
2 {
integer.binary_str()
integer.bin_str()
}
16 {
integer.hex()
Expand Down

0 comments on commit f9906f3

Please sign in to comment.