strconv: fix format_dec example

pull/5186/head^2
Delyan Angelov 2020-06-03 01:30:46 +03:00
parent 2596b0c612
commit 845084c89d
2 changed files with 1 additions and 2 deletions

View File

@ -202,7 +202,7 @@ pub fn f64_to_str_lnd(f f64, dec_digit int) string {
* Single format functions
*
******************************************************************************/
struct BF_param {
pub struct BF_param {
pad_ch byte = ` ` // padding char
len0 int = -1 // default len for whole the number or string
len1 int = 6 // number of decimal digits, if needed

View File

@ -1,4 +1,3 @@
import os
import strconv
fn test_format(){