summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJoao Pedrosa <joaopedrosa@gmail.com>2013-06-29 00:56:37 -0300
committerJoao Pedrosa <joaopedrosa@gmail.com>2013-06-29 00:56:37 -0300
commit7b76a3367e5c6fc69972d1af522ee4f270436bb4 (patch)
treeadbdcc5588333a4ba13fe318171e1a3e3f71bdae
parentbd1c5a1ef12f9e5c50e9b01dd486b99954def7e1 (diff)
Fix exception string content.
-rw-r--r--dart.html.markdown2
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) {