From 3010930da77e81fde47b284233448d95db642649 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BA=90=E6=96=87=E9=9B=A8?= <41315874+fumiama@users.noreply.github.com> Date: Tue, 13 May 2025 20:37:44 +0900 Subject: [PATCH] chore: make lint happy --- future.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/future.go b/future.go index 503c2e7..15c6711 100644 --- a/future.go +++ b/future.go @@ -9,12 +9,12 @@ type FutureEvent struct { } // NewFutureEvent 创建一个FutureEvent, 并返回其指针 -func NewFutureEvent(typ string, prio int, Block bool, rule ...Rule) *FutureEvent { +func NewFutureEvent(typ string, prio int, blk bool, rule ...Rule) *FutureEvent { return &FutureEvent{ Type: typ, Priority: prio, Rule: rule, - Block: Block, + Block: blk, } }