Skip to content

Commit abb0893

Browse files
authored
[spec/errors] Fix exception-safe link (#3882)
1 parent cf86b6b commit abb0893

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/errors.dd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ $(DL
139139

140140
$(DT It is easy to make the error handling source code look good.)
141141
$(DD The try/catch/finally statements look a lot nicer than endless
142-
if (error) goto errorhandler; statements.)
142+
`if (error) goto errorhandler;` statements.)
143143
)
144144

145145
How does this meet our assumptions about errors?
@@ -175,7 +175,7 @@ $(DL
175175
)
176176

177177
Using exceptions to handle errors leads to another issue - how to write
178-
exception safe programs. $(DPLLINK exception-safe.html, Here's how).
178+
exception safe programs. $(LINK2 $(ROOT_DIR)articles/exception-safe.html, Here's how).
179179

180180
$(COMMENT
181181
$(OL

0 commit comments

Comments
 (0)