summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMax Schumacher <maximilianbschumacher@gmail.com>2020-01-28 18:59:22 +0100
committerGitHub <noreply@github.com>2020-01-28 18:59:22 +0100
commit09109e8632fdc03928ae9bc5d779570fe1f23a01 (patch)
tree01a2cdfa25ec8f9712292370d00fe8dac92d8c1d
parent48160226d8214182f3041d604f8f544a572932a8 (diff)
parent2a887480d16d77d7a717a38fabb29a563954ade1 (diff)
Merge pull request #3801 from stranger26/patch-1
[dart] fixed typo
-rw-r--r--dart.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/dart.html.markdown b/dart.html.markdown
index d3c231bd..7db9bd33 100644
--- a/dart.html.markdown
+++ b/dart.html.markdown
@@ -223,7 +223,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 {