Skip to content

Commit 981df29

Browse files
authored
Message fixes: User Story 1823825, Part 1 (#3470)
* Validatation fixes * Update umask-s.md * Update umask.md
1 parent 4bba0e6 commit 981df29

9 files changed

+10
-10
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ By default, this function's global state is scoped to the application. To change
6262
6363
|Routine|Required header|
6464
|-------------|---------------------|
65-
|**ceil**, **ceilf**, **ceill**|\<math.h>|
66-
|**ceil** macro | \<tgmath.h> ||
65+
| **ceil**, **ceilf**, **ceill**| \<math.h> |
66+
| **ceil** macro | \<tgmath.h> |
6767
6868
For additional compatibility information, see [Compatibility](../../c-runtime-library/compatibility.md).
6969

docs/c-runtime-library/reference/floor-floorf-floorl.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ By default, this function's global state is scoped to the application. To change
6363
|Function|Required header|
6464
|--------------|---------------------|
6565
|**floor**, **floorf**, **floorl**|\<math.h>|
66-
|**floor** macro | \<tgmath.h> ||
66+
|**floor** macro | \<tgmath.h> |
6767
6868
For additional compatibility information, see [Compatibility](../../c-runtime-library/compatibility.md).
6969

docs/c-runtime-library/reference/fmin-fminf-fminl.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ If you use the \<tgmath.h> `fmin()` macro, the type of the argument determines w
7676
|Routine|Required header|
7777
|-------------|---------------------|
7878
|**fmin**, **fminf**, **fminl**|C: \<math.h><br />C++: \<math.h> or \<cmath>|
79-
|**fmin** macro | \<tgmath.h> ||
79+
|**fmin** macro | \<tgmath.h> |
8080
8181
For additional compatibility information, see [Compatibility](../../c-runtime-library/compatibility.md).
8282

docs/c-runtime-library/reference/lround-lroundf-lroundl-llround-llroundf-llroundl.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ By default, this function's global state is scoped to the application. To change
7676
|Routine|Required header|
7777
|-------------|---------------------|
7878
|**lround**, **lroundf**, **lroundl**, **llround**, **llroundf**, **llroundl**|\<math.h>|
79-
|**lround** macro | \<tgmath.h> ||
79+
|**lround** macro | \<tgmath.h> |
8080
8181
For additional compatibility information, see [Compatibility](../../c-runtime-library/compatibility.md).
8282

docs/c-runtime-library/reference/round-roundf-roundl.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ By default, this function's global state is scoped to the application. To change
6161
|Routine|Required header|
6262
|-------------|---------------------|
6363
|**round**, **roundf**, **roundl**|\<math.h>|
64-
|**round** macro | \<tgmath.h> ||
64+
|**round** macro | \<tgmath.h> |
6565
6666
For additional compatibility information, see [Compatibility](../../c-runtime-library/compatibility.md).
6767

docs/c-runtime-library/reference/stat-functions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ By default, this function's global state is scoped to the application. To change
125125

126126
The **_stat** structure, defined in SYS\STAT.H, includes the following fields.
127127

128-
|Field||
128+
|Field|Description|
129129
|-|-|
130130
| **st_gid** | Numeric identifier of group that owns the file (UNIX-specific) This field will always be zero on Windows systems. A redirected file is classified as a Windows file. |
131131
| **st_atime** | Time of last access of file. Valid on NTFS but not on FAT formatted disk drives. |

docs/c-runtime-library/reference/umask-s.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ The **_umask_s** function sets the file-permission mask of the current process t
5050

5151
The integer expression *pmode* contains one or both of the following manifest constants, defined in SYS\STAT.H:
5252

53-
|*pmode*||
53+
|*pmode*|Description|
5454
|-|-|
5555
|**_S_IWRITE**|Writing permitted.|
5656
|**_S_IREAD**|Reading permitted.|

docs/c-runtime-library/reference/umask.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ The **_umask** function sets the file-permission mask of the current process to
3535
3636
The integer expression *pmode* contains one or both of the following manifest constants, defined in SYS\STAT.H:
3737
38-
|*pmode*| |
38+
|*pmode*|Description|
3939
|-|-|
4040
| **_S_IWRITE** | Writing permitted. |
4141
| **_S_IREAD** | Reading permitted. |

docs/c-runtime-library/reference/utime-utime32-utime64-wutime-wutime32-wutime64.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ The **_utime** function sets the modification time for the file specified by *fi
7272

7373
The **_utimbuf** structure stores file access and modification times used by **_utime** to change file-modification dates. The structure has the following fields, which are both of type **time_t**:
7474

75-
| Field | |
75+
| Field | Description |
7676
|-------|---|
7777
| **actime** | Time of file access |
7878
| **modtime** | Time of file modification |

0 commit comments

Comments
 (0)