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

Unified Diff: src/site/articles/numeric-computation/index.markdown

Issue 118633004: New TOC for dart-by-example page (Closed) Base URL: https://github.com/dart-lang/dartlang.org.git@master
Patch Set: Created 6 years, 11 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/articles/numeric-computation/index.markdown
diff --git a/src/site/articles/numeric-computation/index.markdown b/src/site/articles/numeric-computation/index.markdown
index 3d6bfebc69754b2d7dcedc18a56331c48e6f3b13..014355be0efb208ba0d361e82ac12eb120c5badf 100644
--- a/src/site/articles/numeric-computation/index.markdown
+++ b/src/site/articles/numeric-computation/index.markdown
@@ -71,7 +71,7 @@ as numbers grow and shrink in range.
<td> bigint </td>
</tr>
<tr>
- <th> Minimum value </th>
+ <th> Minimum value </th>
<td> -2<sup>30</sup> (on a 32-bit machine)
<br>
-2<sup>62</sup> (on a 64-bit machine)</td>
@@ -79,7 +79,7 @@ as numbers grow and shrink in range.
<td> Limited by RAM </td>
</tr>
<tr>
- <th> Maximum value </th>
+ <th> Maximum value </th>
<td> 2<sup>30</sup> - 1 (on a 32-bit machine)
<br>
2<sup>62</sup> - 1 (on a 64-bit machine)</td>
@@ -583,4 +583,4 @@ Float32List becomes a Float32Array.
The one exception today is that dart2js does not support 64-bit integers
and thus does not support Int64List or Uint64List.
Dart code compiled via dart2js results in a runtime exception
-if either of those lists is used.
+if either of those lists is used.

Powered by Google App Engine
This is Rietveld 408576698