[libc-commits] [libc] 2b76fe3 - [libc][docs] Fix file path for fputil (#204534)

via libc-commits libc-commits at lists.llvm.org
Thu Jun 18 10:22:57 PDT 2026


Author: Zorojuro
Date: 2026-06-18T22:52:52+05:30
New Revision: 2b76fe3877b626020dbc1aecbaab61a77d835f21

URL: https://github.com/llvm/llvm-project/commit/2b76fe3877b626020dbc1aecbaab61a77d835f21
DIFF: https://github.com/llvm/llvm-project/commit/2b76fe3877b626020dbc1aecbaab61a77d835f21.diff

LOG: [libc][docs] Fix file path for fputil (#204534)

Fixes a nit in the file path ( replaces `FPUtils` correctly with `FPUtil` )

Added: 
    

Modified: 
    libc/src/math/docs/add_math_function.md

Removed: 
    


################################################################################
diff  --git a/libc/src/math/docs/add_math_function.md b/libc/src/math/docs/add_math_function.md
index ec909b368af01..87528030bb0ba 100644
--- a/libc/src/math/docs/add_math_function.md
+++ b/libc/src/math/docs/add_math_function.md
@@ -85,13 +85,13 @@ If the function should be available to internal LLVM projects:
 - Floating point utilities and math functions that are also used internally are
 located at:
 ```
-  libc/src/__support/FPUtils
+  libc/src/__support/FPUtil
 ```
 - These are preferred to be included as header-only.
 - To manipulate bits of floating point numbers, use the template class
 `LIBC_NAMESPACE::fputil::FPBits<>` in the header file:
 ```
-  libc/src/__support/FPUtils/FPBits.h
+  libc/src/__support/FPUtil/FPBits.h
 ```
 
 ## Testing


        


More information about the libc-commits mailing list