Skip to content

Commit b143735

Browse files
author
Colin Robertson
committed
Acrolinx pass
1 parent 4e0034c commit b143735

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/dotnet/for-each-in.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.assetid: 0c3a364b-2747-43f3-bb8d-b7d3b7023f79
99
---
1010
# for each, in
1111

12-
Iterates through an array or collection. This non-standard keyword is available in both C++/CLI and native C++ projects. However, its use is not recommended. Consider using a standard [Range-based for Statement (C++)](../cpp/range-based-for-statement-cpp.md) instead.
12+
Iterates through an array or collection. This non-standard keyword is available in both C++/CLI and native C++ projects. However, its use isn't recommended. Consider using a standard [Range-based for Statement (C++)](../cpp/range-based-for-statement-cpp.md) instead.
1313

1414
## All Runtimes
1515

@@ -35,7 +35,7 @@ One or more statements to be executed.
3535

3636
### Remarks
3737

38-
The `for each` statement is used to iterate through a collection. You can modify elements in a collection, but you cannot add or delete elements.
38+
The `for each` statement is used to iterate through a collection. You can modify elements in a collection, but you can't add or delete elements.
3939

4040
The *statements* are executed for each element in the array or collection. After the iteration has been completed for all the elements in the collection, control is transferred to the statement that follows the `for each` block.
4141

docs/extensions/generics-cpp-component-extensions.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ ms.assetid: c7ccc316-a411-4c00-b2e2-f0c0eadc6cfd
99
---
1010
# Generics (C++/CLI and C++/CX)
1111

12-
Generics are parameterized types and methods. In this section, find out which generic features are supported by both the Windows Runtime and the common language runtime, and which are supported by only the common language runtime. Also, find out how to author your own generic methods and types in C++/CLI, and how to use generic types authored in a .NET Framework language in C++/CLI. Finally, this section provides a comparison of generics and C++ templates.
12+
Generics are parameterized types and methods. In this section, find out which generic features both the Windows Runtime and the common language runtime support, and which ones only the common language runtime supports. You'll also find out how to author your own generic methods and types in C++/CLI, and how to use generic types authored in a .NET Framework language in C++/CLI. Finally, this section provides a comparison of generics and C++ templates.
1313

1414
## In This Section
1515

1616
### Supported by the Windows Runtime and the Common Language Runtime
1717

1818
[Overview of Generics in C++/CLI](overview-of-generics-in-visual-cpp.md)<br/>
19-
Information about generics are, the motivation for the language feature, definitions of terms used to describe generics, and information about the use of reference types and value types as type parameters for generics.
19+
Information about what generics are, the motivation for the language feature, and definitions of terms that are used to describe generics. Also, information about the use of reference types and value types as type parameters for generics.
2020

2121
[Generic Interfaces (C++/CLI)](generic-interfaces-visual-cpp.md)<br/>
2222
Information about defining and using generic interfaces.

0 commit comments

Comments
 (0)