Skip to content

Commit 1a14cab

Browse files
author
Colin Robertson
authored
Merge pull request #1450 from msebolt/docset-changes-pr7
docset changes true false pr1
2 parents 143b2f9 + 914b845 commit 1a14cab

File tree

47 files changed

+137
-137
lines changed

Some content is hidden

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

47 files changed

+137
-137
lines changed

docs/build/how-to-use-build-events-in-msbuild-projects.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ A build event is a command that MSBuild performs at a particular stage in the bu
1818

1919
Each of the three build events is represented in an item definition group by a command element (`<Command>`) that is executed and a message element (`<Message>`) that is displayed when **MSBuild** performs the build event. Each element is optional, and if you specify the same element multiple times, the last occurrence takes precedence.
2020

21-
An optional *use-in-build* element (`<`*build-event*`UseInBuild>`) can be specified in a property group to indicate whether the build event is executed. The value of the content of a *use-in-build* element is either `true` or `false`. By default, a build event is executed unless its corresponding *use-in-build* element is set to `false`.
21+
An optional *use-in-build* element (`<`*build-event*`UseInBuild>`) can be specified in a property group to indicate whether the build event is executed. The value of the content of a *use-in-build* element is either **true** or **false**. By default, a build event is executed unless its corresponding *use-in-build* element is set to `false`.
2222

2323
The following table lists each build event XML element:
2424

docs/build/msbuild-visual-cpp-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ For example, set the `PreferredToolArchitecture` property to `x64` to use the 64
106106

107107
### UseEnv Property
108108

109-
By default, the platform-specific settings for the current project override the PATH, INCLUDE, LIB, LIBPATH, CONFIGURATION, and PLATFORM environment variables. Set the `UseEnv` property to `true` to guarantee that the environment variables are not overridden.
109+
By default, the platform-specific settings for the current project override the PATH, INCLUDE, LIB, LIBPATH, CONFIGURATION, and PLATFORM environment variables. Set the `UseEnv` property to **true** to guarantee that the environment variables are not overridden.
110110

111111
`msbuild myProject.vcxproj /p:UseEnv=true`
112112

docs/build/reference/manifestuac-embeds-uac-information-in-manifest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ A string that contains the `level` and `uiAccess` values. For more information,
3535
One of *asInvoker*, *highestAvailable*, or *requireAdministrator*. Defaults to asInvoker. For more information, see the Remarks section later in this topic.
3636

3737
*_uiAccess*<br/>
38-
`true` if you want the application to bypass user interface protection levels and drive input to higher-permission windows on the desktop; otherwise, `false`. Defaults to `false`. Set to `true` only for user interface accessibility applications.
38+
**true** if you want the application to bypass user interface protection levels and drive input to higher-permission windows on the desktop; otherwise, **false**. Defaults to **false**. Set to **true** only for user interface accessibility applications.
3939

4040
## Remarks
4141

docs/c-runtime-library/abnormal-termination.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ int _abnormal_termination(
2828
2929
## Return Value
3030
31-
`true` if the system is *unwinding* the stack; otherwise, `false`.
31+
**true** if the system is *unwinding* the stack; otherwise, **false**.
3232
3333
## Remarks
3434

docs/c-runtime-library/rtdynamiccast.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Static type of object pointed to by the `inptr` parameter.
4646
Intended result of cast.
4747
4848
*isReference*<br/>
49-
`true` if input is a reference; `false` if input is a pointer.
49+
**true** if input is a reference; **false** if input is a pointer.
5050
5151
## Return Value
5252

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ The object to compare.
3030

3131
### Return Value
3232

33-
`true` if the objects are equal, otherwise `false`.
33+
**true** if the objects are equal, otherwise **false**.
3434

3535
### Requirements
3636

docs/cppcx/fundamental-types-c-cx.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The following table lists the built-in Boolean and character types, and their st
1919

2020
|Namespace|C++/CX name|Definition|Standard C++ name|Range of Values|
2121
|---------------|-----------------------------------------------------------------------|----------------|-------------------------|---------------------|
22-
|Platform|Boolean|An 8-bit Boolean value.|bool|`true` (nonzero) and `false` (zero)|
22+
|Platform|Boolean|An 8-bit Boolean value.|bool|**true** (nonzero) and **false** (zero)|
2323
|default|char16|A 16-bit non-numeric value that represents a Unicode (UTF-16) code point.|wchar_t<br /><br /> -or-<br /><br /> L'c'|(Specified by the Unicode standard)|
2424

2525
## Numeric types

docs/cppcx/platform-collections-inputiterator-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ Another InputIterator.
127127

128128
### Return Value
129129

130-
`true` if the current InputIterator is equal to `other`; otherwise, `false`.
130+
**true** if the current InputIterator is equal to *other*; otherwise, **false**.
131131

132132
## <a name="operator-increment"></a> InputIterator::operator++ Operator
133133

@@ -167,7 +167,7 @@ Another InputIterator.
167167

168168
### Return Value
169169

170-
`true` if the current InputIterator is not equal to `other`; otherwise, `false`.
170+
**true** if the current InputIterator is not equal to *other*; otherwise, **false**.
171171

172172
## See Also
173173

docs/cppcx/platform-collections-map-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ The key used to locate the Map element. The type of *key* is typename *K*.
156156
157157
### Return Value
158158
159-
`true` if the key is found; otherwise, `false`.
159+
**true** if the key is found; otherwise, **false**.
160160
161161
## <a name="insert"></a> Map::Insert Method
162162
@@ -178,7 +178,7 @@ The value portion of the key-value pair. The type of *value* is typename *V*.
178178

179179
### Return Value
180180

181-
`true` if the key of an existing element in the current Map matches *key* and the value portion of that element is set to *value*. `false` if no existing element in the current Map matches *key* and the *key* and *value* parameters are made into a key-value pair and then added to the current Map.
181+
**true** if the key of an existing element in the current Map matches *key* and the value portion of that element is set to *value*. **false** if no existing element in the current Map matches *key* and the *key* and *value* parameters are made into a key-value pair and then added to the current Map.
182182

183183
## <a name="lookup"></a> Map::Lookup Method
184184

docs/cppcx/platform-collections-mapview-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,11 +102,11 @@ bool HasKey(K key);
102102
### Parameters
103103

104104
*key*<br/>
105-
The key used to locate the MapView element. The type of `key` is typename *K*.
105+
The key used to locate the MapView element. The type of *key* is typename *K*.
106106

107107
### Return Value
108108

109-
`true` if the key is found; otherwise, `false`.
109+
**true** if the key is found; otherwise, **false**.
110110

111111
## <a name="lookup"></a> MapView::Lookup Method
112112

docs/cppcx/platform-collections-unorderedmap-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ The key used to locate the UnorderedMap element. The type of *key* is typename *
155155

156156
### Return Value
157157

158-
`true` if the key is found; otherwise, `false`.
158+
**true** if the key is found; otherwise, **false**.
159159

160160
## <a name="insert"></a> UnorderedMap::Insert Method
161161

@@ -180,7 +180,7 @@ The value portion of the key-value pair. The type of *value* is typename *V*.
180180

181181
### Return Value
182182

183-
`true` if the key of an existing element in the current Map matches *key* and the value portion of that element is set to *value*. `false` if no existing element in the current Map matches *key* and the *key* and *value* parameters are made into a key-value pair and then added to the current UnorderedMap.
183+
**true** if the key of an existing element in the current Map matches *key* and the value portion of that element is set to *value*. **false** if no existing element in the current Map matches *key* and the *key* and *value* parameters are made into a key-value pair and then added to the current UnorderedMap.
184184

185185
## <a name="lookup"></a> UnorderedMap::Lookup Method
186186

docs/cppcx/platform-collections-unorderedmapview-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ The key used to locate the element. The type of `key` is typename *K*.
104104
105105
### Return Value
106106
107-
`true` if the key is found; otherwise, `false`.
107+
**true** if the key is found; otherwise, **false**.
108108
109109
## <a name="lookup"></a> UnorderedMapView::Lookup Method
110110

docs/cppcx/platform-collections-vector-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,11 +216,11 @@ The item to find.
216216
*index*<br/>
217217
The zero-based index of the item if parameter *value* is found; otherwise, 0.
218218
219-
The *index* parameter is 0 if either the item is the first element of the Vector or the item was not found. If the return value is `true`, the item was found and it is the first element; otherwise, the item was not found.
219+
The *index* parameter is 0 if either the item is the first element of the Vector or the item was not found. If the return value is **true**, the item was found and it is the first element; otherwise, the item was not found.
220220
221221
### Return Value
222222
223-
`true` if the specified item is found; otherwise, `false`.
223+
**true** if the specified item is found; otherwise, **false**.
224224
225225
### Remarks
226226

docs/cppcx/platform-collections-vectoriterator-class.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ Another VectorIterator.
147147

148148
### Return Value
149149

150-
`true` if the current VectorIterator is equal to `other`; otherwise, `false`.
150+
**true** if the current VectorIterator is equal to *other*; otherwise, **false**.
151151

152152
## <a name="operator-greater-than"></a> VectorIterator::operator&gt; Operator
153153

@@ -166,7 +166,7 @@ Another VectorIterator.
166166

167167
### Return Value
168168

169-
`true` if the current VectorIterator is greater than `other`; otherwise, `false`.
169+
**true** if the current VectorIterator is greater than *other*; otherwise, **false**.
170170

171171
## <a name="operator-greater-than-or-equals"></a> VectorIterator::operator&gt;= Operator
172172

@@ -185,7 +185,7 @@ Another VectorIterator.
185185

186186
### Return Value
187187

188-
`true` if the current VectorIterator is greater than or equal to `other`; otherwise, `false`.
188+
**true** if the current VectorIterator is greater than or equal to *other*; otherwise, **false**.
189189

190190
## <a name="operator-increment"></a> VectorIterator::operator++ Operator
191191

@@ -225,7 +225,7 @@ Another VectorIterator.
225225

226226
### Return Value
227227

228-
`true` if the current VectorIterator is not equal to `other`; otherwise, `false`.
228+
**true** if the current VectorIterator is not equal to *other*; otherwise, **false**.
229229

230230
## <a name="operator-less-than"></a> VectorIterator::operator&lt; Operator
231231

@@ -244,7 +244,7 @@ Another VectorIterator.
244244

245245
### Return Value
246246

247-
`true` if the current VectorIterator is less than `other`; otherwise, `false`.
247+
**true** if the current VectorIterator is less than *other*; otherwise, **false**.
248248

249249
## <a name="operator-less-than-or-equals"></a> VectorIterator::operator&lt;= Operator
250250

@@ -263,7 +263,7 @@ Another VectorIterator.
263263

264264
### Return Value
265265

266-
`true` if the current VectorIterator is less than or equal to `other`; otherwise, `false`.
266+
**true** if the current VectorIterator is less than or equal to *other*; otherwise, **false**.
267267

268268
## <a name="operator-minus"></a> VectorIterator::operator- Operator
269269

docs/cppcx/platform-collections-vectorview-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,11 +153,11 @@ The item to find.
153153
*index*<br/>
154154
The zero-based index of the item if parameter `value` is found; otherwise, 0.
155155

156-
The `index` parameter is 0 if either the item is the first element of the VectorView or the item was not found. If the return value is `true`, the item was found and it is the first element; otherwise, the item was not found.
156+
The *index* parameter is 0 if either the item is the first element of the `VectorView` or the item was not found. If the return value is **true**, the item was found and it is the first element; otherwise, the item was not found.
157157

158158
### Return Value
159159

160-
`true` if the specified item is found; otherwise, `false`.
160+
**true** if the specified item is found; otherwise, **false**.
161161

162162
## <a name="size"></a> VectorView::Size Method
163163

docs/cppcx/platform-collections-vectorviewiterator-class.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ Another VectorViewIterator.
146146

147147
### Return Value
148148

149-
`true` if the current VectorViewIterator is equal to `other`; otherwise, `false`.
149+
**true** if the current `VectorViewIterator` is equal to *other*; otherwise, **false**.
150150

151151
## <a name="operator-greater-than"></a> VectorViewIterator::operator&gt; Operator
152152

@@ -166,11 +166,11 @@ Another VectorViewIterator.
166166

167167
### Return Value
168168

169-
`true` if the current VectorViewIterator is greater than `other`; otherwise, `false`.
169+
**true** if the current VectorViewIterator is greater than *other*; otherwise, **false**.
170170

171171
## <a name="operator-greater-than-or-equals"></a> VectorViewIterator::operator&gt;= Operator
172172

173-
Indicates whether the current VectorViewIterator is greater than or equal to the specified VectorViewIterator.
173+
Indicates whether the current `VectorViewIterator` is greater than or equal to the specified `VectorViewIterator`.
174174

175175
### Syntax
176176

@@ -186,7 +186,7 @@ Another VectorViewIterator.
186186

187187
### Return Value
188188

189-
`true` if the current VectorViewIterator is greater than or equal to `other`; otherwise, `false`.
189+
**true** if the current `VectorViewIterator` is greater than or equal to *other*; otherwise, **false**.
190190

191191
## <a name="operator-increment"></a> VectorViewIterator::operator++ Operator
192192

@@ -227,7 +227,7 @@ Another VectorViewIterator.
227227

228228
### Return Value
229229

230-
`true` if the current VectorViewIterator is not equal to `other`; otherwise, `false`.
230+
**true** if the current `VectorViewIterator` is not equal to *other*; otherwise, **false**.
231231

232232
## <a name="operator-less-than"></a> VectorViewIterator::operator&lt; Operator
233233

@@ -242,15 +242,15 @@ bool operator<(const VectorViewIterator& other) const;
242242
### Parameters
243243

244244
*other*<br/>
245-
Another VectorIterator.
245+
Another `VectorIterator`.
246246

247247
### Return Value
248248

249-
`true` if the current VectorIterator is less than `other`; otherwise, `false`.
249+
**true** if the current `VectorIterator` is less than *other*; otherwise, **false**.
250250

251251
## <a name="operator-less-than-or-equals"></a> VectorViewIterator::operator&lt;= Operator
252252

253-
Indicates whether the current VectorIterator is less than or equal to a specified VectorIterator.
253+
Indicates whether the current `VectorIterator` is less than or equal to a specified `VectorIterator`.
254254

255255
### Syntax
256256

@@ -262,11 +262,11 @@ bool operator<=(const VectorViewIterator& other) const;
262262
### Parameters
263263

264264
*other*<br/>
265-
Another VectorIterator.
265+
Another `VectorIterator`.
266266

267267
### Return Value
268268

269-
`true` if the current VectorIterator is less than or equal to `other`; otherwise, `false`.
269+
**true** if the current `VectorIterator` is less than or equal to *other*; otherwise, **false**.
270270

271271
## <a name="operator-minus"></a> VectorViewIterator::operator- Operator
272272

docs/cppcx/platform-mtathreadattribute-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ The object to compare.
7777
7878
### Return Value
7979
80-
`true` if the objects are equal; otherwise, `false`.
80+
**true** if the objects are equal; otherwise, **false**.
8181
8282
## <a name="gethashcode"></a> MTAThreadAttribute::GetHashCode
8383

docs/cppcx/platform-object-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ The object to compare.
7171

7272
### Return Value
7373

74-
`true` if the objects are equal, otherwise `false`.
74+
**true** if the objects are equal, otherwise **false**.
7575

7676
## <a name="gethashcode"></a> Object::GetHashCode Method
7777

@@ -153,7 +153,7 @@ The second object to compare.
153153
154154
### Return Value
155155
156-
`true` if the two objects are the same; otherwise, `false`.
156+
**true** if the two objects are the same; otherwise, **false**.
157157
158158
## <a name="tostring"></a> Object::ToString Method (C++/CX)
159159

docs/cppcx/platform-stathreadattribute-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ The object to compare.
7777
7878
### Return Value
7979
80-
`true` if the objects are equal; otherwise, `false`.
80+
**true** if the objects are equal; otherwise, **false**.
8181
8282
## <a name="gethashcode"></a> STAThreadAttribute::GetHashCode
8383

0 commit comments

Comments
 (0)