Skip to content

Commit 64e9afa

Browse files
Merge pull request #4692 from MicrosoftDocs/FromPublicMasterBranch
Confirm merge from FromPublicMasterBranch to main to sync with https://github.com/MicrosoftDocs/cpp-docs (branch main)
2 parents 12d5f7e + c093322 commit 64e9afa

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/c-language/system-function.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ ms.assetid: 0786ccdc-20cd-4d96-b3d8-3230507c3066
99

1010
**ANSI 4.10.4.5** The contents and mode of execution of the string by the **system** function
1111

12-
The **system** function executes an internal operating system command, or an .EXE, .COM (.CMD in Windows NT) or .BAT file from within a C program rather than from the command line.
12+
The **system** function executes an internal operating system command, or an .EXE, .COM, .CMD, or .BAT file from within a C program rather than from the command line.
1313

14-
The system function finds the command interpreter, which is typically CMD.EXE in the Windows NT operating system or COMMAND.COM in Windows. The system function then passes the argument string to the command interpreter.
14+
The system function finds the command interpreter, which is typically CMD.EXE in the Windows operating system. The system function then passes the argument string to the command interpreter.
1515

1616
For more information, see [system, _wsystem](../c-runtime-library/reference/system-wsystem.md).
1717

docs/cpp/auto-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ The **`auto`** initialization expression can take several forms:
4545

4646
- Universal initialization syntax, such as `auto a { 42 };`.
4747
- Assignment syntax, such as `auto b = 0;`.
48-
- Universal assignment syntax, which combines the two previous forms, such as `auto c = { 3.14156 };`.
48+
- Universal assignment syntax, which combines the two previous forms, such as `auto c = { 3.14159 };`.
4949
- Direct initialization, or constructor-style syntax, such as `auto d( 1.41421f );`.
5050

5151
For more information, see [Initializers](../cpp/initializers.md) and the code examples later in this document.

0 commit comments

Comments
 (0)