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

Unified Diff: src/site/_includes/language-tour/3-built-in-types/numbers.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/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>

Powered by Google App Engine
This is Rietveld 408576698