Skip to content

Commit 0bbdf17

Browse files
Tyler WhitneyTyler Whitney
Tyler Whitney
authored and
Tyler Whitney
committed
bulk acrolinx fixes
1 parent d0fe196 commit 0bbdf17

File tree

72 files changed

+81
-80
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+81
-80
lines changed

docs/c-runtime-library/inp-inpw-inpd.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ I/O port number.
3939

4040
## Return Value
4141

42-
The functions return the byte, word, or double word read from `port`. There is no error return.
42+
The functions return the byte, word, or double word read from `port`. There's no error return.
4343

4444
## Remarks
4545

docs/c-runtime-library/reference/abs-labs-llabs-abs64.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Numeric value.
3838

3939
## Return Value
4040

41-
The **abs**, **labs**, **llabs** and **_abs64** functions return the absolute value of the parameter *n*. There is no error return.
41+
The **abs**, **labs**, **llabs**, and **_abs64** functions return the absolute value of the parameter *n*. There's no error return.
4242

4343
## Remarks
4444

docs/c-runtime-library/reference/acos-acosf-acosl.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ By default, if *x* is less than -1 or greater than 1, **acos** returns an indefi
4545
4646
## Remarks
4747
48-
Because C++ allows overloading, you can call overloads of **acos** that take and return **`float`** and **`long double`** types. In a C program, unless you are using the \<tgmath.h> macro to call this function, **acos** always takes and returns a **`double`**.
48+
Because C++ allows overloading, you can call overloads of **acos** that take and return **`float`** and **`long double`** types. In a C program, unless you're using the \<tgmath.h> macro to call this function, **acos** always takes and returns a **`double`**.
4949
5050
If you use the \<tgmath.h> `acos()` macro, the type of the argument determines which version of the function is selected. See [Type-generic math](../../c-runtime-library/tgmath.md) for details.
5151

docs/c-runtime-library/reference/acosh-acoshf-acoshl.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ The **acosh** functions return the inverse hyberbolic cosine (arc hyperbolic cos
4242
4343
## Remarks
4444
45-
When you use C++, you can call overloads of **acosh** that take and return **`float`** or **`long double`** values. In a C program, unless you are using the \<tgmath.h> macro to call this function, **acosh** always takes and returns **`double`**.
45+
When you use C++, you can call overloads of **acosh** that take and return **`float`** or **`long double`** values. In a C program, unless you're using the \<tgmath.h> macro to call this function, **acosh** always takes and returns **`double`**.
4646
4747
If you use the \<tgmath.h> `acosh()` macro, the type of the argument determines which version of the function is selected. See [Type-generic math](../../c-runtime-library/tgmath.md) for details.
4848

docs/c-runtime-library/reference/asin-asinf-asinl.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ By default, if *x* is less than -1 or greater than 1, **asin** returns an indefi
4545
4646
## Remarks
4747
48-
Because C++ allows overloading, you can call overloads of **asin** with **`float`** and **`long double`** values. In a C program, unless you are using the \<tgmath.h> macro to call this function, **asin** always takes and returns a **`double`**.
48+
Because C++ allows overloading, you can call overloads of **asin** with **`float`** and **`long double`** values. In a C program, unless you're using the \<tgmath.h> macro to call this function, **asin** always takes and returns a **`double`**.
4949
5050
If you use the \<tgmath.h> `asin()` macro, the type of the argument determines which version of the function is selected. See [Type-generic math](../../c-runtime-library/tgmath.md) for details.
5151

docs/c-runtime-library/reference/asinh-asinhf-asinhl.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ The **asinh** functions return the inverse hyberbolic sine (arc hyperbolic sine)
4141
4242
## Remarks
4343
44-
When you use C++, you can call overloads of **asinh** that take and return **`float`** or **`long double`** values. In a C program, unless you are using the \<tgmath.h> macro to call this function, **asinh** always takes and returns **`double`**.
44+
When you use C++, you can call overloads of **asinh** that take and return **`float`** or **`long double`** values. In a C program, unless you're using the \<tgmath.h> macro to call this function, **asinh** always takes and returns **`double`**.
4545
4646
If you use the \<tgmath.h> `asinh()` macro, the type of the argument determines which version of the function is selected. See [Type-generic math](../../c-runtime-library/tgmath.md) for details.
4747

docs/c-runtime-library/reference/atan-atanf-atanl-atan2-atan2f-atan2l.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ If you use the \<tgmath.h> `atan()` or `atan2()` macro, the type of the argument
5757
5858
**atan** has an implementation that uses Streaming SIMD Extensions 2 (SSE2). For information and restrictions about using the SSE2 implementation, see [_set_SSE2_enable](set-sse2-enable.md).
5959
60-
Because C++ allows overloading, you can call overloads of **atan** and **atan2** that take **`float`** or **`long double`** arguments. In a C program, unless you are using the \<tgmath.h> macro to call this function, **atan** and **atan2** always take **`double`** arguments and return a **`double`**.
60+
Because C++ allows overloading, you can call overloads of **atan** and **atan2** that take **`float`** or **`long double`** arguments. In a C program, unless you're using the \<tgmath.h> macro to call this function, **atan** and **atan2** always take **`double`** arguments and return a **`double`**.
6161
6262
By default, this function's global state is scoped to the application. To change this, see [Global state in the CRT](../global-state.md).
6363

docs/c-runtime-library/reference/atanh-atanhf-atanhl.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ The **atanh** functions return the inverse hyberbolic tangent (arc hyperbolic ta
4242
4343
## Remarks
4444
45-
Because C++ allows overloading, you can call overloads of **atanh** that take and return **`float`** or **`long double`** values. In a C program, unless you are using the \<tgmath.h> macro to call this function, **atanh** always takes and returns **`double`**.
45+
Because C++ allows overloading, you can call overloads of **atanh** that take and return **`float`** or **`long double`** values. In a C program, unless you're using the \<tgmath.h> macro to call this function, **atanh** always takes and returns **`double`**.
4646
4747
If you use the \<tgmath.h> `atanh()` macro, the type of the argument determines which version of the function is selected. See [Type-generic math](../../c-runtime-library/tgmath.md) for details.
4848

docs/c-runtime-library/reference/carg-cargf-cargl.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ The argument (also known as the phase) of *z*. The result is in the interval [-
4646
4747
## Remarks
4848
49-
Because C++ allows overloading, you can call overloads of **carg** that take **_Fcomplex** or **_Lcomplex** values, and return **`float`** or **`long double`** values. In a C program, unless you are using the \<tgmath.h> macro to call this function, **carg** always takes a **_Dcomplex** value and returns a **`double`** value.
49+
Because C++ allows overloading, you can call overloads of **carg** that take **_Fcomplex** or **_Lcomplex** values, and return **`float`** or **`long double`** values. In a C program, unless you're using the \<tgmath.h> macro to call this function, **carg** always takes a **_Dcomplex** value and returns a **`double`** value.
5050
5151
If you use the \<tgmath.h> `carg()` macro, the type of the argument determines which version of the function is selected. See [Type-generic math](../../c-runtime-library/tgmath.md) for details.
5252

docs/c-runtime-library/reference/cbrt-cbrtf-cbrtl.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ The **cbrt** functions return the cube-root of *x*.
5050
5151
## Remarks
5252
53-
Because C++ allows overloading, you can call overloads of **cbrt** that take **`float`** or **`long double`** types. In a C program, unless you are using the \<tgmath.h> macro to call this function, **cbrt** always takes and returns **`double`**.
53+
Because C++ allows overloading, you can call overloads of **cbrt** that take **`float`** or **`long double`** types. In a C program, unless you're using the \<tgmath.h> macro to call this function, **cbrt** always takes and returns **`double`**.
5454
5555
If you use the \<tgmath.h> `cbrt()` macro, the type of the argument determines which version of the function is selected. See [Type-generic math](../../c-runtime-library/tgmath.md) for details.
5656

docs/c-runtime-library/reference/ceil-ceilf-ceill.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Floating-point value.
4242
4343
## Return Value
4444
45-
The **ceil** functions return a floating-point value that represents the smallest integer that is greater than or equal to *x*. There is no error return.
45+
The **ceil** functions return a floating-point value that represents the smallest integer that is greater than or equal to *x*. There's no error return.
4646
4747
|Input|SEH Exception|Matherr Exception|
4848
|-----------|-------------------|-----------------------|
@@ -52,7 +52,7 @@ The **ceil** functions return a floating-point value that represents the smalles
5252
5353
## Remarks
5454
55-
Because C++ allows overloading, you can call overloads of **ceil** that take **`float`** or **`long double`** types. In a C program, unless you are using the \<tgmath.h> macro to call this function, **ceil** always takes and returns a **`double`**.
55+
Because C++ allows overloading, you can call overloads of **ceil** that take **`float`** or **`long double`** types. In a C program, unless you're using the \<tgmath.h> macro to call this function, **ceil** always takes and returns a **`double`**.
5656
5757
f you use the <tgmath.h> `ceil()` macro, the type of the argument determines which version of the function is selected. See [Type-generic math](../../c-runtime-library/tgmath.md) for details.
5858

docs/c-runtime-library/reference/chgsign-chgsignf-chgsignl.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The floating-point value to be changed.
3434

3535
## Return Value
3636

37-
The **_chgsign** functions return a value that's equal to the floating-point argument *x*, but with its sign reversed. There is no error return.
37+
The **_chgsign** functions return a value that's equal to the floating-point argument *x*, but with its sign reversed. There's no error return.
3838

3939
## Requirements
4040

docs/c-runtime-library/reference/cimag-cimagf-cimagl.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ The imaginary part of *z*.
3737
3838
## Remarks
3939
40-
Because C++ allows overloading, you can call overloads of **cimag** that take **_Fcomplex** or **_Lcomplex** values, and return **`float`** or **`long double`** values. In a C program, unless you are using the \<tgmath.h> macro to call this function, **cimag** always takes a **_Dcomplex** value and returns a **`double`** value.
40+
Because C++ allows overloading, you can call overloads of **cimag** that take **_Fcomplex** or **_Lcomplex** values, and return **`float`** or **`long double`** values. In a C program, unless you're using the \<tgmath.h> macro to call this function, **cimag** always takes a **_Dcomplex** value and returns a **`double`** value.
4141
4242
If you use the \<tgmath.h> `cimag()` macro, the type of the argument determines which version of the function is selected. See [Type-generic math](../../c-runtime-library/tgmath.md) for details.
4343

docs/c-runtime-library/reference/conj-conjf-conjl.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ The complex conjugate of *z*. The result has the same real and imaginary part
4646
4747
## Remarks
4848
49-
Because C++ allows overloading, you can call overloads of **conj** that take and return **_Fcomplex** and **_Lcomplex** values. In a C program, unless you are using the \<tgmath.h> macro to call this function, **conj** always takes and returns a **_Dcomplex** value.
49+
Because C++ allows overloading, you can call overloads of **conj** that take and return **_Fcomplex** and **_Lcomplex** values. In a C program, unless you're using the \<tgmath.h> macro to call this function, **conj** always takes and returns a **_Dcomplex** value.
5050
5151
If you use the \<tgmath.h> `conj()` macro, the type of the argument determines which version of the function is selected. See [Type-generic math](../../c-runtime-library/tgmath.md) for details.
5252

docs/c-runtime-library/reference/copysign-copysignf-copysignl-copysign-copysignf-copysignl.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,11 @@ The floating-point value that's returned as the sign of the result.
6060
6161
## Return Value
6262
63-
The **copysign** functions return a floating-point value that combines the magnitude of *x* and the sign of *y*. There is no error return.
63+
The **copysign** functions return a floating-point value that combines the magnitude of *x* and the sign of *y*. There's no error return.
6464
6565
## Remarks
6666
67-
Because C++ allows overloading, you can call overloads of **copysign** that take and return **`float`** or **`long double`** values. In a C program, unless you are using the \<tgmath.h> macro to call this function, **copysign** always takes and returns a **`double`**.
67+
Because C++ allows overloading, you can call overloads of **copysign** that take and return **`float`** or **`long double`** values. In a C program, unless you're using the \<tgmath.h> macro to call this function, **copysign** always takes and returns a **`double`**.
6868
6969
If you use the \<tgmath.h> `copysign()` macro, the type of the argument determines which version of the function is selected. See [Type-generic math](../../c-runtime-library/tgmath.md) for details.
7070

docs/c-runtime-library/reference/cos-cosf-cosl.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ The cosine of *x*. If *x* is greater than or equal to 263, or less than or equal
4242
4343
## Remarks
4444
45-
Because C++ allows overloading, you can call overloads of **cos** that take and return **`float`** or **`long double`** values. In a C program, unless you are using the \<tgmath.h> macro to call this function, **cos** always takes and returns a **`double`**.
45+
Because C++ allows overloading, you can call overloads of **cos** that take and return **`float`** or **`long double`** values. In a C program, unless you're using the \<tgmath.h> macro to call this function, **cos** always takes and returns a **`double`**.
4646
4747
If you use the \<tgmath.h> `cos()` macro, the type of the argument determines which version of the function is selected. See [Type-generic math](../../c-runtime-library/tgmath.md) for details.
4848

docs/c-runtime-library/reference/cosh-coshf-coshl.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ By default, if the result is too large in a **cosh**, **coshf**, or **coshl** ca
4343
4444
## Remarks
4545
46-
Because C++ allows overloading, you can call overloads of **cosh** that take and return **`float`** or **`long double`** values. In a C program, unless you are using the \<tgmath.h> macro to call this function, **cosh** always takes and returns a **`double`**.
46+
Because C++ allows overloading, you can call overloads of **cosh** that take and return **`float`** or **`long double`** values. In a C program, unless you're using the \<tgmath.h> macro to call this function, **cosh** always takes and returns a **`double`**.
4747
4848
If you use the \<tgmath.h> `cosh()` macro, the type of the argument determines which version of the function is selected. See [Type-generic math](../../c-runtime-library/tgmath.md) for details.
4949

docs/c-runtime-library/reference/cproj-cprojf-cprojl.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ The projection of *z* on the Reimann sphere.
4646
4747
## Remarks
4848
49-
Because C++ allows overloading, you can call overloads of **cproj** that take and return **_Fcomplex** and **_Lcomplex** values. In a C program, unless you are using the \<tgmath.h> macro to call this function, **cproj** always takes and returns a **_Dcomplex** value.
49+
Because C++ allows overloading, you can call overloads of **cproj** that take and return **_Fcomplex** and **_Lcomplex** values. In a C program, unless you're using the \<tgmath.h> macro to call this function, **cproj** always takes and returns a **_Dcomplex** value.
5050
5151
If you use the \<tgmath.h> `cproj()` macro, the type of the argument determines which version of the function is selected. See [Type-generic math](../../c-runtime-library/tgmath.md) for details.
5252

docs/c-runtime-library/reference/creal-crealf-creall.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ The real part of *z*.
3737
3838
## Remarks
3939
40-
Because C++ allows overloading, you can call overloads of **creal** that take **_Fcomplex** or **_Lcomplex** values, and return **`float`** or **`long double`** values. In a C program, unless you are using the \<tgmath.h> macro to call this function, **creal** always takes a **_Dcomplex** value and returns a **`double`** value.
40+
Because C++ allows overloading, you can call overloads of **creal** that take **_Fcomplex** or **_Lcomplex** values, and return **`float`** or **`long double`** values. In a C program, unless you're using the \<tgmath.h> macro to call this function, **creal** always takes a **_Dcomplex** value and returns a **`double`** value.
4141
4242
If you use the \<tgmath.h> `creal()` macro, the type of the argument determines which version of the function is selected. See [Type-generic math](../../c-runtime-library/tgmath.md) for details.
4343

docs/c-runtime-library/reference/erf-erff-erfl-erfc-erfcf-erfcl.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ The **erf** functions calculate the Gauss error function of *x*, which is define
6666
6767
![The error function of x](media/crt_erf_formula.PNG "The error function of x")
6868
69-
The complementary Gauss error function is defined as 1 - erf(x). The **erf** functions return a value in the range -1.0 to 1.0. There is no error return. The **erfc** functions return a value in the range 0 to 2. If *x* is too large for **erfc**, the **errno** variable is set to **ERANGE**.
69+
The complementary Gauss error function is defined as 1 - erf(x). The **erf** functions return a value in the range -1.0 to 1.0. There's no error return. The **erfc** functions return a value in the range 0 to 2. If *x* is too large for **erfc**, the **errno** variable is set to **ERANGE**.
7070
71-
Because C++ allows overloading, you can call overloads of **erf** and **erfc** that take and return **`float`** and **`long double`** types. In a C program, unless you are using the \<tgmath.h> macro to call this function, **erf** and **erfc** always take and return a **`double`**.
71+
Because C++ allows overloading, you can call overloads of **erf** and **erfc** that take and return **`float`** and **`long double`** types. In a C program, unless you're using the \<tgmath.h> macro to call this function, **erf** and **erfc** always take and return a **`double`**.
7272
7373
If you use the \<tgmath.h> `erf()` macro, the type of the argument determines which version of the function is selected. See [Type-generic math](../../c-runtime-library/tgmath.md) for details.
7474

docs/c-runtime-library/reference/exp-expf.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ The **exp** function has an implementation that uses Streaming SIMD Extensions 2
5555
5656
## Remarks
5757
58-
C++ allows overloading, so you can call overloads of **exp** that take a **`float`** or **`long double`** argument. In a C program, unless you are using the \<tgmath.h> macro to call this function, **exp** always takes and returns a **`double`**.
58+
C++ allows overloading, so you can call overloads of **exp** that take a **`float`** or **`long double`** argument. In a C program, unless you're using the \<tgmath.h> macro to call this function, **exp** always takes and returns a **`double`**.
5959
6060
If you use the \<tgmath.h> `exp()` macro, the type of the argument determines which version of the function is selected. See [Type-generic math](../../c-runtime-library/tgmath.md) for details.
6161

docs/c-runtime-library/reference/exp2-exp2f-exp2l.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Errors are reported as specified in [_matherr](matherr.md).
6161
6262
## Remarks
6363
64-
Because C++ allows overloading, you can call overloads of **exp2** that take and return **`float`** and **`long double`** types. In a C program, unless you are using the \<tgmath.h> macro to call this function, **exp2** always takes and returns a **`double`**, unless you use the macro in <tgmath.h>.
64+
Because C++ allows overloading, you can call overloads of **exp2** that take and return **`float`** and **`long double`** types. In a C program, unless you're using the \<tgmath.h> macro to call this function, **exp2** always takes and returns a **`double`**, unless you use the macro in <tgmath.h>.
6565
6666
If you use the \<tgmath.h> `exp2()` macro, the type of the argument determines which version of the function is selected. See [Type-generic math](../../c-runtime-library/tgmath.md) for details.
6767

docs/c-runtime-library/reference/expm1-expm1f-expm1l.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ The **expm1** functions return a floating-point value that represents e<sup>x</s
4646
4747
## Remarks
4848
49-
Because C++ allows overloading, you can call overloads of **expm1** that take and return **`float`** and **`long double`** values. In a C program, unless you are using the \<tgmath.h> macro to call this function, **expm1** always takes and returns a **`double`**.
49+
Because C++ allows overloading, you can call overloads of **expm1** that take and return **`float`** and **`long double`** values. In a C program, unless you're using the \<tgmath.h> macro to call this function, **expm1** always takes and returns a **`double`**.
5050
5151
If you use the \<tgmath.h> `expm1()` macro, the type of the argument determines which version of the function is selected. See [Type-generic math](../../c-runtime-library/tgmath.md) for details.
5252

docs/c-runtime-library/reference/fabs-fabsf-fabsl.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ The **fabs** functions return the absolute value of the argument *x*. There's no
5151
5252
## Remarks
5353
54-
C++ allows overloading, so you can call overloads of **fabs** if you include the \<cmath> header. In a C program, unless you are using the \<tgmath.h> macro to call this function, **fabs** always takes and returns a **`double`**.
54+
C++ allows overloading, so you can call overloads of **fabs** if you include the \<cmath> header. In a C program, unless you're using the \<tgmath.h> macro to call this function, **fabs** always takes and returns a **`double`**.
5555
5656
If you use the \<tgmath.h> `fabs()` macro, the type of the argument determines which version of the function is selected. See [Type-generic math](../../c-runtime-library/tgmath.md) for details.
5757

0 commit comments

Comments
 (0)