Skip to content

Commit 4a99b0b

Browse files
author
Colin Robertson
committed
Fix a few code block format issues
1 parent 334e7e8 commit 4a99b0b

29 files changed

Lines changed: 0 additions & 38 deletions

docs/cppcx/begin-function.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ template <typename T>
3535
::Platform::Collections::InputIterator<T>
3636
begin(
3737
IIterable<T>^ i );
38-
3938
```
4039

4140
#### Parameters

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ Determines whether the specified object is equal to the current object.
1818
## Syntax
1919

2020
```cpp
21-
2221
bool Equals(
2322
Object^ obj
2423
)

docs/cppcx/end-function.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ template <typename T>
3535
end(
3636
IIterable<T>^ i
3737
);
38-
3938
```
4039

4140
#### Parameters

docs/cppcx/operator-type-hat.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ TypeName tn = TypeName(MainPage::typeid);
4242
4343
// Convert back from TypeName to Type
4444
Type^ tx2 = (Type^)(tn);
45-
4645
```
4746

4847
## .NET Framework Equivalent

docs/cppcx/operator-windows-ui-xaml-interop-typename.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ Windows::UI::Xaml::Interop::TypeName tn = TypeName(MainPage::typeid);
4242

4343
// Convert back from TypeName to Type
4444
Type^ tx2 = (Type^)(tn);
45-
4645
```
4746
4847
## .NET Framework Equivalent

docs/cppcx/platform-arrayreference-class.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,7 @@ Assigns the specified object to the current [Platform::ArrayReference](../cppcx/
8585
### Syntax
8686

8787
```cpp
88-
8988
ArrayReference& operator=(ArrayReference&& otherArg);
90-
9189
```
9290

9391
### Parameters
@@ -110,9 +108,7 @@ Converts the current [Platform::ArrayReference](../cppcx/platform-arrayreference
110108
### Syntax
111109

112110
```cpp
113-
114111
Array<TArg>^ operator ();
115-
116112
```
117113

118114
### Return Value

docs/cppcx/platform-collections-details-namespace.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ This namespace supports the `Platform` infrastructure and is not intended to be
1818
## Syntax
1919

2020
```cpp
21-
2221
namespace Platform { namespace Collections { namespace Details {}}}
2322
```
2423

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,6 @@ Returns the number of elements in the current MapView object.
177177
### Syntax
178178
179179
```cpp
180-
181180
virtual property unsigned int Size;
182181
```
183182

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,6 @@ Initializes a new instance of the UnorderedMapView class.
172172
### Syntax
173173
174174
```cpp
175-
176175
UnorderedMapView();
177176
explicit UnorderedMapView(size_t n);
178177
UnorderedMapView(size_t n, const H& h);

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

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,6 @@ Indicates whether the current VectorIterator is greater than a specified VectorI
156156
### Syntax
157157

158158
```cpp
159-
160159
bool operator>(const VectorIterator& other) const
161160
```
162161

@@ -176,7 +175,6 @@ Indicates whether the current VectorIterator is greater than or equal to the spe
176175
### Syntax
177176

178177
```cpp
179-
180178
bool operator>=(const VectorIterator& other) const
181179
```
182180

@@ -236,7 +234,6 @@ Indicates whether the current VectorIterator is less than a specified VectorIter
236234
### Syntax
237235

238236
```cpp
239-
240237
bool operator<(const VectorIterator& other) const
241238
```
242239

@@ -256,7 +253,6 @@ Indicates whether the current VectorIterator is less than or equal to a specifie
256253
### Syntax
257254

258255
```cpp
259-
260256
bool operator<=(const VectorIterator& other) const
261257
```
262258

@@ -327,7 +323,6 @@ template <typename T>
327323
inline VectorIterator<T> operator+(
328324
ptrdiff_t n,
329325
const VectorIterator<T>& i);
330-
331326
```
332327

333328
### Parameters

0 commit comments

Comments
 (0)