| Index: sdk/lib/core/int.dart
|
| diff --git a/sdk/lib/core/int.dart b/sdk/lib/core/int.dart
|
| index 2b1b70c0737e9449bc2616c7d232bbbb1af5e428..a5235bbd66b878001f36a7bf52fcdd6e277e4194 100644
|
| --- a/sdk/lib/core/int.dart
|
| +++ b/sdk/lib/core/int.dart
|
| @@ -5,18 +5,15 @@
|
| part of dart.core;
|
|
|
| /**
|
| - * Representation of Dart integers containing integer specific
|
| - * operations and specialization of operations inherited from [num].
|
| + * An arbitrarily large integer.
|
| *
|
| - * Integers can be arbitrarily large in Dart.
|
| - *
|
| - * *Note however, that when compiling to JavaScript, integers are
|
| + * **Note:** When compiling to JavaScript, integers are
|
| * implemented as JavaScript numbers. When compiling to JavaScript,
|
| * integers are therefore restricted to 53 significant bits because
|
| * all JavaScript numbers are double-precision floating point
|
| * values. The behavior of the operators and methods in the [int]
|
| * class therefore sometimes differs between the Dart VM and Dart code
|
| - * compiled to JavaScript.*
|
| + * compiled to JavaScript.
|
| *
|
| * It is a compile-time error for a class to attempt to extend or implement int.
|
| */
|
|
|