Skip to content

Commit 23e5e4c

Browse files
minor style tweak, line 220
1 parent a4f5d5d commit 23e5e4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/cpp/destructors-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ ps->~String(); // Virtual call
217217

218218
The notation for explicit calls to destructors, shown in the preceding, can be used regardless of whether the type defines a destructor. This allows you to make such explicit calls without knowing if a destructor is defined for the type. An explicit call to a destructor where none is defined has no effect.
219219

220-
## Robust Programming
220+
## Robust programming
221221

222222
A class needs a destructor if it acquires a resource, and to manage the resource safely it probably has to implement a copy constructor and a copy assignment.
223223

0 commit comments

Comments
 (0)