diff --git a/Dalamud/Interface/ManagedFontAtlas/IFontHandle.cs b/Dalamud/Interface/ManagedFontAtlas/IFontHandle.cs
index 47f384c11..460fd53a0 100644
--- a/Dalamud/Interface/ManagedFontAtlas/IFontHandle.cs
+++ b/Dalamud/Interface/ManagedFontAtlas/IFontHandle.cs
@@ -41,6 +41,10 @@ public interface IFontHandle : IDisposable
///
/// A disposable object that will call (1) on dispose.
/// If called outside of the main thread.
+ ///
+ /// Only intended for use with using keywords, such as using (handle.Push()).
+ /// Should you store or transfer the return value to somewhere else, use as the type.
+ ///
FontPopper Push();
///