Merge branch 'bugfix/doc_cxx_fix' into 'master'

C++: fixed documentation MR regression leading to doc build error

See merge request espressif/esp-idf!7642
This commit is contained in:
Mahavir Jain
2020-02-18 17:33:40 +08:00

View File

@@ -120,5 +120,5 @@ Enabling exception handling normally increases application binary size by a few
If an exception is thrown, but there is no ``catch`` block, the program will be terminated by ``abort`` function, and backtrace will be printed. See :doc:`Fatal Errors <fatal-errors>` for more information about backtraces. If an exception is thrown, but there is no ``catch`` block, the program will be terminated by ``abort`` function, and backtrace will be printed. See :doc:`Fatal Errors <fatal-errors>` for more information about backtraces.
See :example:`system/cpp_exceptions` for an example of C++ exception handling. See :example:`cxx/exceptions` for an example of C++ exception handling.