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:
446446[ ArgParser ] : https://pub.dev/documentation/args/latest/args/ArgParser/ArgParser.html 
447447[ ArgParserException ] : https://pub.dev/documentation/args/latest/args/ArgParserException-class.html 
448448[ ArgResults ] : https://pub.dev/documentation/args/latest/args/ArgResults-class.html 
449+ [ ArgumentError ] : https://api.dart.dev/dart-core/ArgumentError-class.html 
449450[ CommandRunner ] : https://pub.dev/documentation/args/latest/command_runner/CommandRunner-class.html 
450451[ Command ] : https://pub.dev/documentation/args/latest/command_runner/Command-class.html 
451452[ 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>> {
124124
125125  /// Adds [stream]  as a member of this group. 
126126  /// 
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. 
130130  /// 
131131  /// If this is a single-subscription group and its subscription has been 
132132  /// 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';
88import  'intx.dart' ;
99import  'utilities.dart'  as  u;
1010
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]`  . 
1212/// Arithmetic operations may overflow in order to maintain this range. 
1313class  Int32  implements  IntX  {
1414  /// 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';
1313import  'intx.dart' ;
1414import  'utilities.dart'  as  u;
1515
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]`  . 
1717/// Arithmetic operations may overflow in order to maintain this range. 
1818class  Int64  implements  IntX  {
1919  // A 64-bit integer is represented internally as three non-negative 
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments