| 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>
|
|
|