Skip to content

Commit d1b3a19

Browse files
authored
Join code blocks that are split into lines
1 parent 5d02db0 commit d1b3a19

File tree

2 files changed

+13
-18
lines changed

2 files changed

+13
-18
lines changed

docs/mfc/reference/crgn-class.md

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -609,17 +609,14 @@ int GetRgnBox(LPRECT lpRect) const;
609609
*lpRect*<br/>
610610
Points to a `RECT` structure or `CRect` object to receive the coordinates of the bounding rectangle. The `RECT` structure has the following form:
611611

612-
`typedef struct tagRECT {`
613-
614-
`int left;`
615-
616-
`int top;`
617-
618-
`int right;`
619-
620-
`int bottom;`
621-
622-
`} RECT;`
612+
```cpp
613+
typedef struct tagRECT {
614+
int left;
615+
int top;
616+
int right;
617+
int bottom;
618+
} RECT;
619+
```
623620
624621
### Return Value
625622

docs/standard-library/unordered-set-operators.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -67,13 +67,11 @@ int main()
6767
}
6868
```
6969

70-
**Output:**
71-
72-
`c1 != c2: true`
73-
74-
`c1 != c3: false`
75-
76-
`c2 != c3: true`
70+
```Output
71+
c1 != c2: true
72+
c1 != c3: false
73+
c2 != c3: true
74+
```
7775

7876
## <a name="op_eq_eq"></a> operator==
7977

0 commit comments

Comments
 (0)