Chromium Code Reviews| Index: pkg/fixnum/lib/fixnum.dart |
| diff --git a/pkg/fixnum/lib/fixnum.dart b/pkg/fixnum/lib/fixnum.dart |
| index 4ac6f2a8d31e4fa6aeecf213297030d98be34e44..009d2d3a9b3fdb637c0e4bde0f42ea6d259310a7 100644 |
| --- a/pkg/fixnum/lib/fixnum.dart |
| +++ b/pkg/fixnum/lib/fixnum.dart |
| @@ -2,6 +2,28 @@ |
| // for details. All rights reserved. Use of this source code is governed by a |
| // BSD-style license that can be found in the LICENSE file. |
| +/** |
| + * This library provides fixed-size integer support. |
|
justinfagnani
2013/08/14 17:06:51
mention that it contains a 32 bit and 64 signed in
Kathy Walrath
2013/08/14 17:15:07
Our convention is for the first line to *not* be a
Chris Bracken
2013/08/14 17:45:31
Done.
Chris Bracken
2013/08/14 17:45:31
Done.
|
| + * |
| + * The integer implementations in this library are guaranteed to behave |
| + * identically whether executed on the Dart VM or compiled to JavaScript. |
| + * |
| + * ## Installing ## |
|
justinfagnani
2013/08/14 17:06:51
Do most libraries include pub install directions i
Kathy Walrath
2013/08/14 17:15:07
Why is there a ## after this header?
Chris Bracken
2013/08/14 17:45:31
I modelled these off the intl package. I agree tho
Chris Bracken
2013/08/14 17:45:31
Done.
|
| + * |
| + * Use [pub][] to install this package. Add the following to your `pubspec.yaml` |
|
Kathy Walrath
2013/08/14 17:15:07
I'm not used to this style of linking. Is there a
Chris Bracken
2013/08/14 17:45:31
Done.
|
| + * file. |
|
Kathy Walrath
2013/08/14 17:15:07
file. -> file:
Chris Bracken
2013/08/14 17:45:31
Done.
|
| + * |
| + * dependencies: |
| + * fixnum: any |
| + * |
| + * Then run `pub install`. |
| + * |
| + * For more information, see the |
| + * [fixnum package on pub.dartlang.org] |
| + * (http://pub.dartlang.org/packages/fixnum). |
| + * |
| + * [pub]: http://pub.dartlang.org |
| + */ |
| library fixnum; |
| part 'src/intx.dart'; |