summaryrefslogtreecommitdiffhomepage
path: root/dart.html.markdown
diff options
context:
space:
mode:
Diffstat (limited to 'dart.html.markdown')
-rw-r--r--dart.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/dart.html.markdown b/dart.html.markdown
index 07f755f7..f8fb06fc 100644
--- a/dart.html.markdown
+++ b/dart.html.markdown
@@ -211,7 +211,7 @@ example14() {
// statically typed null can not be convert to bool
var c = "abc";
c = null;
- // complie failed
+ // compile failed
// if (c) {
// print("true, c is $c");
// } else {