diff options
author | Joao Pedrosa <joaopedrosa@gmail.com> | 2013-06-29 00:56:37 -0300 |
---|---|---|
committer | Joao Pedrosa <joaopedrosa@gmail.com> | 2013-06-29 00:56:37 -0300 |
commit | 7b76a3367e5c6fc69972d1af522ee4f270436bb4 (patch) | |
tree | adbdcc5588333a4ba13fe318171e1a3e3f71bdae /dart.html.markdown | |
parent | bd1c5a1ef12f9e5c50e9b01dd486b99954def7e1 (diff) |
Fix exception string content.
Diffstat (limited to 'dart.html.markdown')
-rw-r--r-- | dart.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dart.html.markdown b/dart.html.markdown index b4b640c9..dc228d16 100644 --- a/dart.html.markdown +++ b/dart.html.markdown @@ -201,7 +201,7 @@ example15() { try { throw "Some unexpected error."; } catch (e) { - print("Example15 null value causes an exception: '${e}'"); + print("Example15 an exception: '${e}'"); throw e; // Re-throw } } catch (e) { |