| Index: src/site/_includes/language-tour/3-built-in-types/numbers.html
|
| diff --git a/src/site/_includes/language-tour/3-built-in-types/numbers.html b/src/site/_includes/language-tour/3-built-in-types/numbers.html
|
| index 3cba777396611dece3953a082f714840018fd7ae..fce2e9407e73759e26e7ccf1539af127c65fb62c 100644
|
| --- a/src/site/_includes/language-tour/3-built-in-types/numbers.html
|
| +++ b/src/site/_includes/language-tour/3-built-in-types/numbers.html
|
| @@ -34,9 +34,11 @@ var hex = 0xDEADBEEF;
|
| var bigInt = 3465346583465243765923847659234765928347659567398475647495873984572947593470294387093493456870849216348723763945678236420938467345762304958724596873045876234572037862934765294365243652548673456705673465273465246734506873456729457623845623456234650457693475603768922346728346256;
|
| {% endhighlight %}
|
|
|
| -<aside class="note">
|
| - <b>Note:</b>
|
| - Big integers are currently treated differently between Dart and JavaScript.
|
| +<aside>
|
| + <div class="alert alert-info">
|
| + <strong>Tip:</strong>
|
| + Big integers are currently treated differently between Dart and JavaScript.
|
| + </div>
|
| </aside>
|
|
|
| <p>
|
| @@ -82,4 +84,3 @@ assert((3 < 1) == 6); // 0011 << 1 == 0110
|
| assert((3 >> 1) == 1); // 0011 >> 1 == 0001
|
| assert((3 | 4) == 7); // 0011 | 0100 == 0111
|
| {% endhighlight %}
|
| -</section>
|
|
|