Skip to content

Commit 2cb78a9

Browse files
committed
Nonsubstantive code edits
1 parent c8369e4 commit 2cb78a9

17 files changed

+828
-809
lines changed

Numbers/PeterO/Numbers/EContext.cs

+25-23
Original file line numberDiff line numberDiff line change
@@ -527,10 +527,11 @@ public EInteger Precision {
527527
}
528528

529529
/// <summary>Gets the desired rounding mode when converting numbers
530-
/// that can't be represented in the given precision and exponent
530+
/// that can't be represented in the specified precision and exponent
531531
/// range.</summary>
532532
/// <value>The desired rounding mode when converting numbers that can't
533-
/// be represented in the given precision and exponent range.</value>
533+
/// be represented in the specified precision and exponent
534+
/// range.</value>
534535
public ERounding Rounding {
535536
get {
536537
return this.rounding;
@@ -561,9 +562,9 @@ public int Traps {
561562
}
562563
}
563564

564-
/// <summary>Creates a new arithmetic context using the given maximum
565-
/// number of digits, an unlimited exponent range, and the HalfUp
566-
/// rounding mode.</summary>
565+
/// <summary>Creates a new arithmetic context using the specified
566+
/// maximum number of digits, an unlimited exponent range, and the
567+
/// HalfUp rounding mode.</summary>
567568
/// <param name='precision'>Maximum number of digits
568569
/// (precision).</param>
569570
/// <returns>A context object for arbitrary-precision arithmetic
@@ -578,8 +579,8 @@ public static EContext ForPrecision(int precision) {
578579
}
579580

580581
/// <summary>Creates a new EContext object initialized with an
581-
/// unlimited exponent range, and the given rounding mode and maximum
582-
/// precision.</summary>
582+
/// unlimited exponent range, and the specified rounding mode and
583+
/// maximum precision.</summary>
583584
/// <param name='precision'>Maximum number of digits
584585
/// (precision).</param>
585586
/// <param name='rounding'>The parameter <paramref name='rounding'/> is
@@ -612,7 +613,7 @@ public static EContext ForPrecisionAndRounding(
612613
false).WithUnlimitedExponents();
613614

614615
/// <summary>Creates a new EContext object initialized with an
615-
/// unlimited precision, an unlimited exponent range, and the given
616+
/// unlimited precision, an unlimited exponent range, and the specified
616617
/// rounding mode.</summary>
617618
/// <param name='rounding'>The rounding mode for the new precision
618619
/// context.</param>
@@ -653,11 +654,11 @@ public EContext Copy() {
653654
this.traps);
654655
}
655656

656-
/// <summary>Determines whether a number can have the given Exponent
657-
/// property under this arithmetic context.</summary>
657+
/// <summary>Determines whether a number can have the specified
658+
/// Exponent property under this arithmetic context.</summary>
658659
/// <param name='exponent'>An arbitrary-precision integer indicating
659660
/// the desired exponent.</param>
660-
/// <returns><c>true</c> if a number can have the given Exponent
661+
/// <returns><c>true</c> if a number can have the specified Exponent
661662
/// property under this arithmetic context; otherwise, <c>false</c>.
662663
/// If this context allows unlimited precision, returns true for the
663664
/// exponent EMax and any exponent less than EMax.</returns>
@@ -715,7 +716,7 @@ public bool HasFlagsOrTraps {
715716
}
716717

717718
/// <summary>Copies this EContext and sets the copy's "AdjustExponent"
718-
/// property to the given value.</summary>
719+
/// property to the specified value.</summary>
719720
/// <param name='adjustExponent'>The new value of the "AdjustExponent"
720721
/// property for the copy.</param>
721722
/// <returns>A context object for arbitrary-precision arithmetic
@@ -829,7 +830,7 @@ public EContext WithBlankFlags() {
829830
}
830831

831832
/// <summary>Copies this arithmetic context and sets the copy's
832-
/// "ClampNormalExponents" flag to the given value.</summary>
833+
/// "ClampNormalExponents" flag to the specified value.</summary>
833834
/// <param name='clamp'>The desired value of the "ClampNormalExponents"
834835
/// flag.</param>
835836
/// <returns>A context object for arbitrary-precision arithmetic
@@ -897,7 +898,7 @@ public EContext WithPrecision(int precision) {
897898
}
898899

899900
/// <summary>Copies this EContext and sets the copy's
900-
/// "IsPrecisionInBits" property to the given value.</summary>
901+
/// "IsPrecisionInBits" property to the specified value.</summary>
901902
/// <param name='isPrecisionBits'>The new value of the
902903
/// "IsPrecisionInBits" property for the copy.</param>
903904
/// <returns>A context object for arbitrary-precision arithmetic
@@ -941,7 +942,7 @@ public EContext WithRounding(ERounding rounding) {
941942
}
942943

943944
/// <summary>Copies this EContext and sets the copy's "IsSimplified"
944-
/// property to the given value.</summary>
945+
/// property to the specified value.</summary>
945946
/// <param name='simplified'>Desired value of the IsSimplified
946947
/// property.</param>
947948
/// <returns>A context object for arbitrary-precision arithmetic
@@ -962,9 +963,9 @@ public EContext WithSimplified(bool simplified) {
962963
this.traps);
963964
}
964965

965-
/// <summary>Copies this EContext with Traps set to the given value.
966-
/// (Also sets HasFlags on the copy to <c>True</c>, but this may
967-
/// change in version 2.0 of this library.).</summary>
966+
/// <summary>Copies this EContext with Traps set to the specified
967+
/// value. (Also sets HasFlags on the copy to <c>True</c>, but this
968+
/// may change in version 2.0 of this library.).</summary>
968969
/// <param name='traps'>Flags representing the traps to enable. See the
969970
/// property "Traps".</param>
970971
/// <returns>A context object for arbitrary-precision arithmetic
@@ -1018,11 +1019,12 @@ public EContext GetNontrapping() {
10181019
return (this.Traps == 0) ? this : this.WithTraps(0).WithBlankFlags();
10191020
}
10201021

1021-
/// <summary>Throws trap exceptions if the given context has flags set
1022-
/// that also have traps enabled for them in this context, and adds the
1023-
/// given context's flags to this context if HasFlags for this context
1024-
/// is true. This is not a general-purpose method; it is intended to
1025-
/// support custom implementations of arithmetic operations.</summary>
1022+
/// <summary>Throws trap exceptions if the specified context has flags
1023+
/// set that also have traps enabled for them in this context, and adds
1024+
/// the specified context's flags to this context if HasFlags for this
1025+
/// context is true. This is not a general-purpose method; it is
1026+
/// intended to support custom implementations of arithmetic
1027+
/// operations.</summary>
10261028
/// <param name='result'>The result of the operation.</param>
10271029
/// <param name='trappableContext'>An arithmetic context, usually a
10281030
/// context returned by the GetNontrapping method. Can be null.</param>

0 commit comments

Comments
 (0)