Skip to content

Commit 2c49ca9

Browse files
authored
Merge pull request MicrosoftDocs#3753 from MicrosoftDocs/FromPublicMasterBranch
Confirm merge from FromPublicMasterBranch to master to sync with https://github.com/MicrosoftDocs/cpp-docs (branch master)
2 parents 1d0d576 + 72239d9 commit 2c49ca9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/cpp/constructors-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,7 @@ public:
569569
Box() {}
570570

571571
// Initialize a Box with equal dimensions (i.e. a cube)
572-
Box(int i) : Box(i, i, i); // delegating constructor
572+
Box(int i) : Box(i, i, i) // delegating constructor
573573
{}
574574

575575
// Initialize a Box with custom dimensions

0 commit comments

Comments
 (0)