summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--dart.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/dart.html.markdown b/dart.html.markdown
index 2672dc6a..0a9140ac 100644
--- a/dart.html.markdown
+++ b/dart.html.markdown
@@ -224,7 +224,7 @@ var newExplicitLists = explicitList.toList() // Converts Iterable<E> to List<E>
/// supported features, starting with forEach,map and where.
var example9Array = const ["a", "b"];
example9() {
- for (final i = 0; i < example9Array.length; i++) {
+ for (int i = 0; i < example9Array.length; i++) {
print("Example9 for loop '${example9Array[i]}'");
}
var i = 0;