diff --git a/TheSquid.Numerics.Extensions/PowCachedExtension.cs b/TheSquid.Numerics.Extensions/PowCachedExtension.cs
index 2d06c15..c575312 100644
--- a/TheSquid.Numerics.Extensions/PowCachedExtension.cs
+++ b/TheSquid.Numerics.Extensions/PowCachedExtension.cs
@@ -47,7 +47,7 @@ static PowCachedExtension()
/// Power degree value.
///
///
- /// The result of raising to the power.
+ /// The result of raising basement to the exponent power.
///
public static BigInteger Pow(this ref BigInteger basement, int exponent)
{
@@ -64,7 +64,7 @@ public static BigInteger Pow(this ref BigInteger basement, int exponent)
/// Power degree value.
///
///
- /// The result of raising to the power.
+ /// The result of raising basement to the exponent power.
///
public static BigInteger PowCached(this ref BigInteger basement, int exponent)
{
@@ -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.
///
- /// <
+ ///
/// Associated lifetime values in the ItemsLifetime property.
///
public static void ShrinkCacheData(long lifetimeLimit)