Skip to content

Commit 1749513

Browse files
oboukliColin Robertson
authored andcommitted
1 parent 7127467 commit 1749513

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/cpp/assignment.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ The copy assignment operator is not to be confused with the copy constructor. Th
6060
// Copy constructor is called--not overloaded copy assignment operator!
6161
Point pt3 = pt1;
6262

63-
// The previous initialization is line is similar to the following:
64-
Point pt4(pt1); // Copy constructor call
63+
// The previous initialization is similar to the following:
64+
Point pt4(pt1); // Copy constructor call.
6565
```
6666
6767
> [!NOTE]

0 commit comments

Comments
 (0)