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

This commit is contained in:
Tue Ly 2021-12-17 13:30:41 -05:00
parent 62ead36547
commit 9369aa1444
1 changed files with 3 additions and 3 deletions

View File

@ -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
```