Skip to content

Commit db8780a

Browse files
Fix formatting of swap method syntax examples
1 parent fc73a88 commit db8780a

File tree

1 file changed

+2
-2
lines changed
  • content/cpp/concepts/unordered-set/terms/swap

1 file changed

+2
-2
lines changed

content/cpp/concepts/unordered-set/terms/swap/swap.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ The two `unordered_set` containers do not need to have the same size, but they m
2323

2424
The `swap()` method can be used in the following syntax:
2525

26-
1/. Member Function
26+
1\. Member Function
2727

2828
```pseudo
2929
unordered_set_first.swap(unordered_set_second);
3030
```
3131

32-
2/. Non-Member Function
32+
2\. Non-Member Function
3333

3434
```pseudo
3535
swap(unordered_set_first, unordered_set_second);

0 commit comments

Comments
 (0)