diff --git a/EXILED/Exiled.API/Features/Player.cs b/EXILED/Exiled.API/Features/Player.cs
index b76a887530..d960bcb1e7 100644
--- a/EXILED/Exiled.API/Features/Player.cs
+++ b/EXILED/Exiled.API/Features/Player.cs
@@ -3210,7 +3210,7 @@ public void EnableEffect(EffectType type, float duration = 0f, bool addDurationI
/// The intensity of the effect will be active for.
/// The amount of time the effect will be active for.
/// If the effect is already active, setting to will add this duration onto the effect.
- /// return if the effect has been Enable.
+ /// A bool indicating whether the effect was valid and successfully enabled.
public bool EnableEffect(EffectType type, byte intensity, float duration = 0f, bool addDurationIfActive = false)
=> TryGetEffect(type, out StatusEffectBase statusEffect) && EnableEffect(statusEffect, intensity, duration, addDurationIfActive);