Skip to content

Commit c66d555

Browse files
authored
fix to_string_with_integer_types argument (#69)
1 parent f2b60d0 commit c66d555

File tree

4 files changed

+2
-2
lines changed

4 files changed

+2
-2
lines changed

Diff for: precompile/binaries/minlib/string_utils.mv

0 Bytes
Binary file not shown.

Diff for: precompile/binaries/stdlib/string_utils.mv

0 Bytes
Binary file not shown.

Diff for: precompile/modules/initia_stdlib/sources/string_utils.move

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ module initia_std::string_utils {
2727

2828
/// Format emitting integers with types ie. 6u8 or 128u32.
2929
public fun to_string_with_integer_types<T>(s: &T): String {
30-
native_format(s, false, true, true, false)
30+
native_format(s, false, true, true, true)
3131
}
3232

3333
/// Format vectors and structs with newlines and indentation.

Diff for: precompile/modules/minitia_stdlib/sources/string_utils.move

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ module minitia_std::string_utils {
2727

2828
/// Format emitting integers with types ie. 6u8 or 128u32.
2929
public fun to_string_with_integer_types<T>(s: &T): String {
30-
native_format(s, false, true, true, false)
30+
native_format(s, false, true, true, true)
3131
}
3232

3333
/// Format vectors and structs with newlines and indentation.

0 commit comments

Comments
 (0)