Skip to content

Commit

Permalink
Fix xml documentation in PowCachedExtension class.
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSquidCombatant committed Aug 15, 2023
1 parent 2845506 commit 85dd277
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions TheSquid.Numerics.Extensions/PowCachedExtension.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ static PowCachedExtension()
/// Power degree value.
/// </param>
/// <returns>
/// The result of raising <param name="basement"> to the <param name="exponent"> power.
/// The result of raising basement to the exponent power.
/// </returns>
public static BigInteger Pow(this ref BigInteger basement, int exponent)
{
Expand All @@ -64,7 +64,7 @@ public static BigInteger Pow(this ref BigInteger basement, int exponent)
/// Power degree value.
/// </param>
/// <returns>
/// The result of raising <param name="basement"> to the <param name="exponent"> power.
/// The result of raising basement to the exponent power.
/// </returns>
public static BigInteger PowCached(this ref BigInteger basement, int exponent)
{
Expand Down Expand Up @@ -137,7 +137,7 @@ private static BigInteger CalculateNewValue(ref BigInteger basement, int exponen
/// Input lifetime value, all elements less than which will be considered obsolete
/// and removed. Or input a zero to clear the cache completely.
/// </param>
/// <<remarks>
/// <remarks>
/// Associated lifetime values in the ItemsLifetime property.
/// </remarks>
public static void ShrinkCacheData(long lifetimeLimit)
Expand Down

0 comments on commit 85dd277

Please sign in to comment.