Skip to content

Commit 13b665e

Browse files
authored
Merge pull request MicrosoftDocs#2010 from corob-msft/cr-fix-1006
Fix typos in Complex type names, issue 1006
2 parents 38ddb49 + a6ec4b9 commit 13b665e

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "C complex math support"
3-
ms.date: "03/30/2018"
3+
ms.date: "05/14/2019"
44
f1_keywords: ["c.complex"]
55
helpviewer_keywords: ["complex numbers, math routines", "math routines", "complex numbers"]
66
---
@@ -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)