Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(286)

Unified Diff: src/site/_includes/language-tour/3-built-in-types/maps.html

Issue 10700168: massive CL is massive (Closed) Base URL: https://code.google.com/p/dartlang-site/@master
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/site/_includes/language-tour/3-built-in-types/maps.html
diff --git a/src/site/_includes/language-tour/3-built-in-types/maps.html b/src/site/_includes/language-tour/3-built-in-types/maps.html
index fe7c78051172a1db35278ac3c717fcaae647c103..a9ee9e708e7c515379927a73588ecdf4bdfed2bc 100644
--- a/src/site/_includes/language-tour/3-built-in-types/maps.html
+++ b/src/site/_includes/language-tour/3-built-in-types/maps.html
@@ -122,10 +122,12 @@ var gifts = {
gifts.forEach((k,v) => print('$k : $v'));
{% endhighlight %}
-<aside class="note">
-<b>Note:</b>
-Don't depend on forEach() returning
-the key-value pairs in a particular order.
+<aside>
+ <div class="alert alert-info">
+ <strong>Tip:</strong>
+ Don't depend on forEach() returning
+ the key-value pairs in a particular order.
+ </div>
</aside>
<p>
@@ -143,9 +145,11 @@ var values = gifts.getValues();
values.forEach((v) => print(v));
{% endhighlight %}
-<aside class="note">
-<b>Note:</b>
-Map itself does not extend the Collection interface.
+<aside>
+ <div class="alert alert-info">
+ <strong>Tip:</strong>
+ Map itself does not extend the Collection interface.
+ </div>
</aside>
</section>

Powered by Google App Engine
This is Rietveld 408576698