diff options
| author | cui fliter <imcusg@gmail.com> | 2022-08-05 20:10:20 +0800 |
|---|---|---|
| committer | cui fliter <imcusg@gmail.com> | 2022-08-05 20:10:20 +0800 |
| commit | dc8b7a0eb866d436cdaf4bb0c0dcd4c18962fa13 (patch) | |
| tree | b0f837441196b8c8ba6f138ebaf7d4572d7fd6bd /core/c | |
| parent | 8d1f46d837efdcebaf2e3660942a93337a230329 (diff) | |
fix some typos
Signed-off-by: cui fliter <imcusg@gmail.com>
Diffstat (limited to 'core/c')
| -rw-r--r-- | core/c/libc/math.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/c/libc/math.odin b/core/c/libc/math.odin index 6a7b81850..0a6ecc0c3 100644 --- a/core/c/libc/math.odin +++ b/core/c/libc/math.odin @@ -331,7 +331,7 @@ fmin :: proc{libc_fmin, libc_fminf} fma :: proc{libc_fma, libc_fmaf} // But retain the 'f' suffix-variant functions as well so they can be used, -// a trick is used here where we use explicit procedrual overloading of one +// a trick is used here where we use explicit procedural overloading of one // procedure. This is done because the foreign block is marked @(private) and // aliasing functions does not remove privateness from the entity. acosf :: proc{libc_acosf} |