summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorHo Chin Chee <alexho97@hotmail.com>2019-12-27 11:21:13 +0800
committerGitHub <noreply@github.com>2019-12-27 11:21:13 +0800
commit2a887480d16d77d7a717a38fabb29a563954ade1 (patch)
tree8bf33ae778a654c4ca571a5e3c6c7cf1c44e89c1
parenta068a103f530c987544629fe25d1d71ea8287f6f (diff)
Update 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 {