[libc-commits] [libc] 9369aa1 - [libc][Obvious] Change func_ to <func>_ in add_math_function.md.

Tue Ly via libc-commits libc-commits at lists.llvm.org
Fri Dec 17 10:33:15 PST 2021


Author: Tue Ly
Date: 2021-12-17T13:32:51-05:00
New Revision: 9369aa144409b678d34acc499ceb4f79043d4745

URL: https://github.com/llvm/llvm-project/commit/9369aa144409b678d34acc499ceb4f79043d4745
DIFF: https://github.com/llvm/llvm-project/commit/9369aa144409b678d34acc499ceb4f79043d4745.diff

LOG: [libc][Obvious] Change func_ to <func>_ in add_math_function.md.

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 a3325a533e433..d2affca51b61d 100644
--- a/libc/src/math/docs/add_math_function.md
+++ b/libc/src/math/docs/add_math_function.md
@@ -90,7 +90,7 @@ testing macros specifically used for floating point values, such as
 
 - Add unit test to:
 ```
-  libc/test/src/math/func_test.cpp
+  libc/test/src/math/<func>_test.cpp
 ```
 - Add the corresponding entry point to:
 ```
@@ -105,7 +105,7 @@ order to find exceptional cases for your function's implementation.
 
 - Add an exhaustive test to:
 ```
-  libc/test/src/math/exhaustive/func_test.cpp
+  libc/test/src/math/exhaustive/<func>_test.cpp
 ```
 - Add the corresponding entry point to:
 ```
@@ -157,7 +157,7 @@ implementation (which is very often glibc).
 
 - Build and Run a specific unit test:
 ```
-  $ ninja libc.test.src.math.func_test
+  $ ninja libc.test.src.math.<func>_test
   $ projects/libc/test/src/math/libc.test.src.math.<func>_test
 ```
 


        


More information about the libc-commits mailing list