diff options
author | Max Schumacher <maximilianbschumacher@gmail.com> | 2020-01-28 18:59:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-28 18:59:22 +0100 |
commit | 09109e8632fdc03928ae9bc5d779570fe1f23a01 (patch) | |
tree | 01a2cdfa25ec8f9712292370d00fe8dac92d8c1d /dart.html.markdown | |
parent | 48160226d8214182f3041d604f8f544a572932a8 (diff) | |
parent | 2a887480d16d77d7a717a38fabb29a563954ade1 (diff) |
Merge pull request #3801 from stranger26/patch-1
[dart] fixed typo
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 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 { |