Skip to content

Commit a3cfd34

Browse files
committed
assert paragraph not closed properly.
1 parent cf4a209 commit a3cfd34

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ctod.dd

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -233,10 +233,10 @@ result = (x < y); // false if x or y is nan
233233
$(H3 <a name="assert">Asserts are a necessary part of any good defensive coding strategy</a>)
234234

235235
$(H4 The C Way)
236-
$(P C doesn't directly support assert in the language, but does define a
237-
macro in the standard library header assert.h. That macro writes a diagnostic
238-
message on stderr when the condition given as parameter is not true. The message
239-
will use __FILE__, __LINE__ and __func__ (C99) to localize the failing assertion.
236+
$(P C doesn't directly support assert in the language, but does define a macro
237+
in the standard library header assert.h. That macro writes a diagnostic message
238+
on stderr when the condition given as parameter is not true. The message will
239+
use __FILE__, __LINE__ and __func__ (C99) to localize the failing assertion.)
240240

241241
$(CCODE
242242
#include &lt;assert.h&gt;

0 commit comments

Comments
 (0)