diff --git a/Telegrator/Handlers/InlineQueryHandler.cs b/Telegrator/Handlers/InlineQueryHandler.cs
index 7a12d7b..1e65e56 100644
--- a/Telegrator/Handlers/InlineQueryHandler.cs
+++ b/Telegrator/Handlers/InlineQueryHandler.cs
@@ -9,6 +9,7 @@ namespace Telegrator.Handlers
{
///
/// Attribute that marks a handler to process inline queries.
+ /// IMPORTANT! You can have only ONE instance of this handler.
///
public class InlineQueryHandlerAttribute(int importance = 0) : UpdateHandlerAttribute(UpdateType.InlineQuery, importance)
{
@@ -18,6 +19,7 @@ namespace Telegrator.Handlers
///
/// Abstract base class for handlers that process inline queries.
+ /// IMPORTANT! You can have only ONE instance of this handler.
///
public abstract class InlineQueryHandler() : AbstractUpdateHandler(UpdateType.InlineQuery)
{