Skip to content

Commit b152dfe

Browse files
authored
Merge pull request #3547 from corob-msft/docs/corob/fix-missing-spaces
Fix some missing space issues
2 parents c799df8 + 168dc71 commit b152dfe

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

docs/c-runtime-library/reference/splitpath-s-wsplitpath-s.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ Base filename (without extension). You can pass **NULL** for this parameter if y
8181
The size of the *fname* buffer in single-byte or wide characters. If *fname* is **NULL**, this value must be 0.
8282

8383
*ext*<br/>
84-
Filename extension, including leading period (**.**).You can pass **NULL** for this parameter if you do not need the filename extension.
84+
Filename extension, including leading period (**.**). You can pass **NULL** for this parameter if you do not need the filename extension.
8585

8686
*extNumberOfElements*<br/>
8787
The size of *ext* buffer in single-byte or wide characters. If *ext* is **NULL**, this value must be 0.

docs/code-quality/c6290.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.assetid: 96a1acc4-724b-4b56-b091-661ddcc03884
1313
1414
This warning indicates possible confusion in the use of an operator or an operator precedence.
1515

16-
The `!` operator yields a Boolean result, and it has higher precedence than the `&`.The bitwise-and (&) operator takes two arithmetic arguments. Therefore, one of the following errors has been detected:
16+
The `!` operator yields a Boolean result, and it has higher precedence than the `&`. The bitwise-and (&) operator takes two arithmetic arguments. Therefore, one of the following errors has been detected:
1717

1818
- The expression is mis-parenthesised:
1919

docs/cppcx/partial-classes-c-cx.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ The following code fragment demonstrates accessibility. In the first partial cla
4242

4343
A partial definition of a class such as `MyClass` is only a declaration of MyClass. That is, it only introduces the name `MyClass`. `MyClass` can't be used in a way that requires a class definition, for example, knowing the size of `MyClass` or using a base or member of `MyClass`. `MyClass` is considered to be defined only when the compiler encounters a non-partial definition of `MyClass`.
4444

45-
The following example demonstrates the declaration behavior of a partial class. After declaration #1, `MyClass` can be used as if it were written as the forward declaration, `ref class MyClass;`. Declaration #2 is equivalent to declaration #1.Declaration #3 is valid because it's a forward declaration to a class. But declaration #4 is invalid because
45+
The following example demonstrates the declaration behavior of a partial class. After declaration #1, `MyClass` can be used as if it were written as the forward declaration, `ref class MyClass;`. Declaration #2 is equivalent to declaration #1. Declaration #3 is valid because it's a forward declaration to a class. But declaration #4 is invalid because
4646

4747
`MyClass` is not fully defined.
4848

docs/mfc/reference/casyncsocket-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ A bitmask which specifies a combination of network events in which the applicati
423423
- FD_CLOSE Want to receive notification of socket closure.
424424

425425
*lpszSockAddress*<br/>
426-
A pointer to a string containing the network address of the connected socket, a dotted number such as "128.56.22.8".Passing the NULL string for this parameter indicates the `CAsyncSocket` instance should listen for client activity on all network interfaces.
426+
A pointer to a string containing the network address of the connected socket, a dotted number such as "128.56.22.8". Passing the NULL string for this parameter indicates the `CAsyncSocket` instance should listen for client activity on all network interfaces.
427427

428428
### Return Value
429429

docs/overview/visual-cpp-samples.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ More information is available about the programming models, platforms, languages
374374
| [Application data sample (Windows 8)](https://github.com/Microsoft/VCSamples/tree/master/VC2012Samples/Windows%208%20samples/C%2B%2B/Windows%208%20app%20samples) | This sample shows you how to store and retrieve data that is specific to each user and Windows Store app using the Windows Runtime application data APIs. Application data includes session state, user preferences, and other settings. |
375375
| [Custom driver access sample (Windows 8)](https://github.com/Microsoft/VCSamples/tree/master/VC2012Samples/Windows%208%20samples/C%2B%2B/Windows%208%20app%20samples) | This sample shows how to use CreateDeviceAccessInstance and IDeviceIoControl to access a specialized device. |
376376
| [XAML ListView and GridView essentials sample (Windows 8)](https://github.com/Microsoft/VCSamples/tree/master/VC2012Samples/Windows%208%20samples/C%2B%2B/Windows%208%20app%20samples) | This sample demonstrates how to use the GridView and ListView controls. |
377-
| [Animation metrics sample (Windows 8)](https://github.com/Microsoft/VCSamples/tree/master/VC2012Samples/Windows%208%20samples/C%2B%2B/Windows%208%20app%20samples) | This sample shows how to use the Animation Metrics APIs in `Windows.UI.Core`.AnimationMetrics to access the raw parameters that define the animations in the Windows Animation Library. |
377+
| [Animation metrics sample (Windows 8)](https://github.com/Microsoft/VCSamples/tree/master/VC2012Samples/Windows%208%20samples/C%2B%2B/Windows%208%20app%20samples) | This sample shows how to use the Animation Metrics APIs in `Windows.UI.Core.AnimationMetrics` to access the raw parameters that define the animations in the Windows Animation Library. |
378378
| [Playback Manager msAudioCategory sample (Windows 8)](https://github.com/Microsoft/VCSamples/tree/master/VC2012Samples/Windows%208%20samples/C%2B%2B/Windows%208%20app%20samples) | This sample demonstrates how to select the correct msAudioCategory category for an audio-video (AV) stream to configure it as an audio playback stream. |
379379
| [XAML DirectX 3D shooting game sample (Windows 8)](https://github.com/Microsoft/VCSamples/tree/master/VC2012Samples/Windows%208%20samples/C%2B%2B/Windows%208%20app%20samples) | This sample demonstrates the implementation of a simple first person 3-D game using DirectX (Direct3D 11.1, Direct2D, XInput, and XAudio2) and XAML in a C++ app. XAML is used for the heads-up display and game state messages. |
380380
| [XAML scrolling, panning, and zooming sample (Windows 8)](https://github.com/Microsoft/VCSamples/tree/master/VC2012Samples/Windows%208%20samples/C%2B%2B/Windows%208%20app%20samples) | This sample demonstrates how to use the ScrollViewer control to pan and zoom. |

docs/porting/porting-guide-mfc-scribble.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ When you open an old project file in Visual Studio, Visual Studio offers to conv
3131
An error occurred notifying us that the Itanium target is not available and won't be converted.
3232

3333
```Output
34-
Platform 'Itanium' is missing from this project. All the configurations and their file configuration settings specific to this platform will be ignored. If you want this platform converted, please make sure you have the corresponding platform installed under '%vctargetpath%\platforms\Itanium'.Continue to convert this project without this platform?
34+
Platform 'Itanium' is missing from this project. All the configurations and their file configuration settings specific to this platform will be ignored. If you want this platform converted, please make sure you have the corresponding platform installed under '%vctargetpath%\platforms\Itanium'. Continue to convert this project without this platform?
3535
```
3636

3737
At the time the previous Scribble project was created, Itanium was an important target platform. The Windows platform no longer supports Itanium, so we chose to continue without supporting the Itanium platform.

docs/standard-library/regular-expressions-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ An equivalence class in a bracket expression adds all the characters and *collat
307307

308308
### File Format Escape
309309

310-
A file format escape consists of the usual C language character escape sequences, "\\\\", "\a", "\b", "\f", "\n", "\r", "\t", "\v".These have the usual meanings, that is, backslash, alert, backspace, form feed, newline, carriage return, horizontal tab, and vertical tab, respectively. In `ECMAScript`, "\a" and "\b" are not allowed. ("\\\\" is allowed, but it is an identity escape, not a file format escape).
310+
A file format escape consists of the usual C language character escape sequences, "\\\\", "\a", "\b", "\f", "\n", "\r", "\t", "\v". These have the usual meanings, that is, backslash, alert, backspace, form feed, newline, carriage return, horizontal tab, and vertical tab, respectively. In `ECMAScript`, "\a" and "\b" are not allowed. ("\\\\" is allowed, but it is an identity escape, not a file format escape).
311311

312312
### Hexadecimal Escape Sequence
313313

0 commit comments

Comments
 (0)