Skip to content

Commit

Permalink
Fix documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
gammasoft71 committed Nov 14, 2023
1 parent 3280d7e commit b23bc00
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/xtd.core/include/xtd/finally.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ namespace xtd {
/// console::write_line("start");
/// try {
/// console::write_line("try");
/// throw system_exception("invalid operation exception");
/// throw system_exception("invalid operation exception", csf_);
/// } catch (const system_exception& e) {
/// console::write_line("catch");
/// console::write_line("catch : {}", e);
/// } finally_ {
/// console::write_line("finally");
/// };
Expand All @@ -57,7 +57,8 @@ namespace xtd {
/// //
/// // start
/// // try
/// // catch
/// // catch : xtd::system_exception : invalid operation exception
/// // at main [0x00007CAC] in /!---OMITTED---!/finally_test.cpp:line 9
/// // stop
/// // finally
/// @endcode
Expand Down

0 comments on commit b23bc00

Please sign in to comment.