Skip to content

Commit 2ef1a0a

Browse files
author
mikeblome
committed
misc fixes to cppcx headings, code blocks, links
1 parent 1932874 commit 2ef1a0a

File tree

90 files changed

+257
-306
lines changed

Some content is hidden

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

90 files changed

+257
-306
lines changed

docs/cppcx/back-inserter-function.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ Platform::BackInsertIterator<T>
4343
`v`
4444
An interface pointer that provides access to the underlying collection.
4545

46-
## Return Value
46+
### Return Value
4747
An iterator.
4848

49-
## Requirements
49+
### Requirements
5050
**Header:** collection.h
5151

5252
**Namespace:** Windows::Foundation::Collections

docs/cppcx/begin-function.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,15 @@ template <typename T>
5555
`i`
5656
A collection of arbitrary [!INCLUDE[wrt](../cppcx/includes/wrt-md.md)] objects that are accessed by an IIterable\<T> interface.
5757

58-
## Return Value
58+
### Return Value
5959
An iterator that points to the beginning of the collection.
6060

61-
## Remarks
61+
### Remarks
6262
The first two template functions return iterators, and the third template function returns an input iterator.
6363

6464
The VectorIterator object that is returned by begin is a proxy iterator that stores elements of type VectorProxy\<T>. However, the proxy object is almost never visible to user code. For more information, see [Collections (C++/CX)](../cppcx/collections-c-cx.md).
6565

66-
## Requirements
66+
### Requirements
6767
**Header:** collection.h
6868

6969
**Namespace:** Windows::Foundation::Collections

docs/cppcx/compiler-and-linker-options-c-cx.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ An environment variable, C++/CX compiler options, and linker options support the
4040
|/WINMDKEYCONTAINER:*name*|Specifies a key container to sign an assembly. The *name* parameter corresponds to the key container that's used to sign the metadata file.|
4141
|/WINMDKEYFILE:*filename*|Specifies a key or a key pair to sign the assembly. The *filename* parameter corresponds to the key that's used to sign the metadata file.|
4242

43-
## Remarks
43+
### Remarks
4444
When you use **/ZW**, the compiler automatically links to the DLL version of the C Runtime (CRT). Linking to the static library version is not allowed, and any use of CRT functions that are not allowed in a Universal Windows Platform app will cause a compile-time error.
4545

4646
## See Also

docs/cppcx/default-namespace.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The `default` namespace scopes the built-in types that are supported by C++/CX.
2727
namespace default;
2828
```
2929

30-
## Members
30+
### Members
3131
All built-in types inherit the following members.
3232

3333
|||
@@ -53,7 +53,7 @@ namespace default;
5353
|`uint64`|A 64-bit unsigned integer.|
5454
|`uint8`|An 8-bit unsigned numeric value.|
5555

56-
## Requirements
56+
### Requirements
5757
**Header:** vccorlib.h
5858

5959
## See Also

docs/cppcx/default-type-name-equals-method.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ bool Equals(
3030
)
3131
```
3232

33-
## Parameters
33+
### Parameters
3434
obj
3535
The object to compare.
3636

37-
## Return Value
37+
### Return Value
3838
`true` if the objects are equal, otherwise `false`.
3939

40-
## Requirements
40+
### Requirements
4141
**Minimum supported client:** [!INCLUDE[win8](../cppcx/includes/win8-md.md)]
4242

4343
**Minimum supported server:** [!INCLUDE[winserver8](../cppcx/includes/winserver8-md.md)]

docs/cppcx/default-type-name-gethashcode-method.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ Returns the hash code for this instance.
2727
public:int GetHashCode()
2828
```
2929

30-
## Return Value
30+
### Return Value
3131
The hash code for this instance.
3232

33-
## Requirements
33+
### Requirements
3434
**Minimum supported client:** [!INCLUDE[win8](../cppcx/includes/win8-md.md)]
3535

3636
**Minimum supported server:** [!INCLUDE[winserver8](../cppcx/includes/winserver8-md.md)]

docs/cppcx/default-type-name-gettype-method.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ Returns a Platform::Type^ that represents the current type.
2828
Platform::Type^ GetType()
2929
```
3030

31-
## Return Value
31+
### Return Value
3232
A [Platform::Type](../cppcx/platform-type-class.md)^ object that represents the current object.
3333

34-
## Requirements
34+
### Requirements
3535
**Minimum supported client:** [!INCLUDE[win8](../cppcx/includes/win8-md.md)]
3636

3737
**Minimum supported server:** [!INCLUDE[winserver8](../cppcx/includes/winserver8-md.md)]

docs/cppcx/default-type-name-tostring-method.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ Returns a string that represents the current type.
2828
String^ ToString()
2929
```
3030

31-
## Return Value
31+
### Return Value
3232
A string that represents the current object.
3333

34-
## Requirements
34+
### Requirements
3535
**Minimum supported client:** [!INCLUDE[win8](../cppcx/includes/win8-md.md)]
3636

3737
**Minimum supported server:** [!INCLUDE[winserver8](../cppcx/includes/winserver8-md.md)]

docs/cppcx/deprecating-types-and-members-c-cx.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ In C++/CX, deprecation of [!INCLUDE[wrt](../cppcx/includes/wrt-md.md)] types and
2020
> [!CAUTION]
2121
> The [Deprecated](http://msdn.microsoft.com/en-us/8b02ad36-3b5f-4361-888b-e6a99040e57c) attribute is for use only with [!INCLUDE[wrt](../cppcx/includes/wrt-md.md)] types. For standard C++ classes and members, use [__declspec(deprecated)](http://msdn.microsoft.com/library/044swk7y.aspx).
2222
23-
## Example
23+
### Example
2424
The following example shows how to deprecate your own public APIs—for example, in a Windows Runtime component. The second parameter, of type [Windows:Foundation::Metadata::DeprecationType](http://msdn.microsoft.com/en-us/ee01e63d-37d0-4273-accc-fca174f88bfa) specifies whether the API is being deprecated or removed. Currently only the DeprecationType::Deprecated value is supported. The third parameter in the attribute specifies the [Windows::Foundation::Metadata::Platform](http://msdn.microsoft.com/en-us/1eae292d-1ab7-4d97-a58c-b0beffd51ef5) to which the attribute applies.
2525

2626
```

docs/cppcx/end-function.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,15 @@ template <typename T>
5555
`i`
5656
A collection of arbitraty [!INCLUDE[wrt](../cppcx/includes/wrt-md.md)] objects that are accessed by an IIterable\<T> interface.
5757

58-
## Return Value
58+
### Return Value
5959
An iterator that points beyond the end of the collection.
6060

61-
## Remarks
61+
### Remarks
6262
The first two template functions return iterators, and the third template function returns an input iterator.
6363

6464
The [Platform::Collections::VectorViewIterator](../cppcx/platform-collections-vectorviewiterator-class.md) object that is returned by `end` is a proxy iterator that stores elements of type `VectorProxy<T>`. However, the proxy object is almost never visible to user code. For more information, see [Collections (C++/CX)](../cppcx/collections-c-cx.md).
6565

66-
## Requirements
66+
### Requirements
6767
**Header:** collection.h
6868

6969
**Namespace:** Windows::Foundation::Collections

0 commit comments

Comments
 (0)