@@ -810,68 +810,68 @@ def overflowOperationComment(operator):
810
810
comments = {
811
811
'+ ': """ \
812
812
/// Returns the sum of this value and the given value, along with a Boolean
813
- /// flag indicating whether overflow occurred in the operation.
813
+ /// value indicating whether overflow occurred in the operation.
814
814
///
815
815
/// - Parameter rhs: The value to add to this value.
816
816
/// - Returns: A tuple containing the result of the addition along with a
817
- /// Boolean flag indicating whether overflow occurred. If the `overflow`
817
+ /// Boolean value indicating whether overflow occurred. If the `overflow`
818
818
/// component is `false`, the `partialValue` component contains the entire
819
819
/// sum. If the `overflow` component is `true`, an overflow occurred and
820
820
/// the `partialValue` component contains the truncated sum of this value
821
821
/// and `rhs`.
822
822
""" ,
823
823
'- ': """ \
824
824
/// Returns the difference obtained by subtracting the given value from this
825
- /// value, along with a Boolean flag indicating whether overflow occurred in
825
+ /// value, along with a Boolean value indicating whether overflow occurred in
826
826
/// the operation.
827
827
///
828
828
/// - Parameter rhs: The value to subtract from this value.
829
829
/// - Returns: A tuple containing the result of the subtraction along with a
830
- /// Boolean flag indicating whether overflow occurred. If the `overflow`
830
+ /// Boolean value indicating whether overflow occurred. If the `overflow`
831
831
/// component is `false`, the `partialValue` component contains the entire
832
832
/// difference. If the `overflow` component is `true`, an overflow occurred
833
833
/// and the `partialValue` component contains the truncated result of `rhs`
834
834
/// subtracted from this value.
835
835
""" ,
836
836
'* ': """ \
837
837
/// Returns the product of this value and the given value, along with a
838
- /// Boolean flag indicating whether overflow occurred in the operation.
838
+ /// Boolean value indicating whether overflow occurred in the operation.
839
839
///
840
840
/// - Parameter rhs: The value to multiply by this value.
841
841
/// - Returns: A tuple containing the result of the multiplication along with
842
- /// a Boolean flag indicating whether overflow occurred. If the `overflow`
842
+ /// a Boolean value indicating whether overflow occurred. If the `overflow`
843
843
/// component is `false`, the `partialValue` component contains the entire
844
844
/// product. If the `overflow` component is `true`, an overflow occurred and
845
845
/// the `partialValue` component contains the truncated product of this
846
846
/// value and `rhs`.
847
847
""" ,
848
848
'/ ': """ \
849
849
/// Returns the quotient obtained by dividing this value by the given value,
850
- /// along with a Boolean flag indicating whether overflow occurred in the
850
+ /// along with a Boolean value indicating whether overflow occurred in the
851
851
/// operation.
852
852
///
853
853
/// Dividing by zero is not an error when using this method. For a value `x`,
854
854
/// the result of `x.dividedReportingOverflow(by: 0)` is `(x, true)`.
855
855
///
856
856
/// - Parameter rhs: The value to divide this value by.
857
857
/// - Returns: A tuple containing the result of the division along with a
858
- /// Boolean flag indicating whether overflow occurred. If the `overflow`
858
+ /// Boolean value indicating whether overflow occurred. If the `overflow`
859
859
/// component is `false`, the `partialValue` component contains the entire
860
860
/// quotient. If the `overflow` component is `true`, an overflow occurred
861
861
/// and the `partialValue` component contains either the truncated quotient
862
862
/// or, if the quotient is undefined, the dividend.
863
863
""" ,
864
864
'% ': """ \
865
865
/// Returns the remainder after dividing this value by the given value, along
866
- /// with a Boolean flag indicating whether overflow occurred during division.
866
+ /// with a Boolean value indicating whether overflow occurred during division.
867
867
///
868
868
/// Dividing by zero is not an error when using this method. For a value `x`,
869
869
/// the result of `x.remainderReportingOverflow(dividingBy: 0)` is
870
870
/// `(x, true)`.
871
871
///
872
872
/// - Parameter rhs: The value to divide this value by.
873
873
/// - Returns: A tuple containing the result of the operation along with a
874
- /// Boolean flag indicating whether overflow occurred. If the `overflow`
874
+ /// Boolean value indicating whether overflow occurred. If the `overflow`
875
875
/// component is `false`, the `partialValue` component contains the entire
876
876
/// remainder. If the `overflow` component is `true`, an overflow occurred
877
877
/// during division and the `partialValue` component contains either the
0 commit comments