diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2024-06-28 12:00:23 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-28 12:00:23 +0100 |
| commit | 853173a11bc4e7fbe5e66951d338cf10140dd4c5 (patch) | |
| tree | 46842d8adf2760677abde0ad6f5d18fe0c326752 /core | |
| parent | a1ae6f161b77358feea7626a9852cc44e1226802 (diff) | |
| parent | 2918baa3e860601d0cd5933a6caed237f11acea9 (diff) | |
Merge pull request #3517 from timosperisen/patch-1
Update builder.odin
Diffstat (limited to 'core')
| -rw-r--r-- | core/strings/builder.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/strings/builder.odin b/core/strings/builder.odin index 3c5bc5793..33054a8a9 100644 --- a/core/strings/builder.odin +++ b/core/strings/builder.odin @@ -723,11 +723,11 @@ write_f32 :: proc(b: ^Builder, f: f32, fmt: byte, always_signed := false) -> (n: return write_string(b, s) } /* -Writes a f32 value to the Builder and returns the number of characters written +Writes a f64 value to the Builder and returns the number of characters written Inputs: - b: A pointer to the Builder -- f: The f32 value to be appended +- f: The f64 value to be appended - fmt: The format byte - always_signed: Optional boolean flag to always include the sign |