Skip to content

Commit 65d7c59

Browse files
author
Colin Robertson
committed
Fix typos for issue #1006
1 parent da20276 commit 65d7c59

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

docs/c-runtime-library/complex-math-support.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ The Microsoft implementation of the complex.h header defines these types as equi
1818

1919
|Standard type|Microsoft type|
2020
|-|-|
21-
|**float complex** or **float _Complex**|**_FComplex**|
22-
|**double complex** or **double _Complex**|**_DComplex**|
23-
|**long double complex** or **long double _Complex**|**_LComplex**|
21+
|**float complex** or **float _Complex**|**_Fcomplex**|
22+
|**double complex** or **double _Complex**|**_Dcomplex**|
23+
|**long double complex** or **long double _Complex**|**_Lcomplex**|
2424

2525
The math.h header defines a separate type, **struct _complex**, used for the [_cabs](../c-runtime-library/reference/cabs.md) function. The **struct _complex** type is not used by the equivalent complex math functions [cabs, cabsf, cabsl](../c-runtime-library/reference/cabs-cabsf-cabsl.md).
2626

2727
## Complex constants and macros
2828

29-
**I** is defined as the **float** complex type **_FComplex** initialized by `{ 0.0f, 1.0f }`.
29+
**I** is defined as the **float** complex type **_Fcomplex** initialized by `{ 0.0f, 1.0f }`.
3030

3131
## Trigonometric functions
3232

0 commit comments

Comments
 (0)