File tree Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -446,6 +446,7 @@ The resulting string looks something like this:
446
446
[ ArgParser ] : https://pub.dev/documentation/args/latest/args/ArgParser/ArgParser.html
447
447
[ ArgParserException ] : https://pub.dev/documentation/args/latest/args/ArgParserException-class.html
448
448
[ ArgResults ] : https://pub.dev/documentation/args/latest/args/ArgResults-class.html
449
+ [ ArgumentError ] : https://api.dart.dev/dart-core/ArgumentError-class.html
449
450
[ CommandRunner ] : https://pub.dev/documentation/args/latest/command_runner/CommandRunner-class.html
450
451
[ Command ] : https://pub.dev/documentation/args/latest/command_runner/Command-class.html
451
452
[ UsageException ] : https://pub.dev/documentation/args/latest/command_runner/UsageException-class.html
Original file line number Diff line number Diff line change @@ -124,9 +124,9 @@ class StreamGroup<T> implements Sink<Stream<T>> {
124
124
125
125
/// Adds [stream] as a member of this group.
126
126
///
127
- /// Any events from [stream] will be emitted through [this .stream] . If this
128
- /// group has a listener, [stream] will be listened to immediately; otherwise
129
- /// it will only be listened to once this group gets a listener.
127
+ /// Any events from [stream] will be emitted through [StreamGroup .stream] . If
128
+ /// this group has a listener, [stream] will be listened to immediately;
129
+ /// otherwise it will only be listened to once this group gets a listener.
130
130
///
131
131
/// If this is a single-subscription group and its subscription has been
132
132
/// canceled, [stream] will be canceled as soon as its added. If this returns
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import 'int64.dart';
8
8
import 'intx.dart' ;
9
9
import 'utilities.dart' as u;
10
10
11
- /// An immutable 32-bit signed integer, in the range [-2^31, 2^31 - 1] .
11
+ /// An immutable 32-bit signed integer, in the range ` [-2^31, 2^31 - 1]` .
12
12
/// Arithmetic operations may overflow in order to maintain this range.
13
13
class Int32 implements IntX {
14
14
/// The maximum positive value attainable by an [Int32] , namely
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import 'int32.dart';
13
13
import 'intx.dart' ;
14
14
import 'utilities.dart' as u;
15
15
16
- /// An immutable 64-bit signed integer, in the range [-2^63, 2^63 - 1] .
16
+ /// An immutable 64-bit signed integer, in the range ` [-2^63, 2^63 - 1]` .
17
17
/// Arithmetic operations may overflow in order to maintain this range.
18
18
class Int64 implements IntX {
19
19
// A 64-bit integer is represented internally as three non-negative
You can’t perform that action at this time.
0 commit comments