From 7200b8aceea145ffbdc2a663b6a96386d51bf049 Mon Sep 17 00:00:00 2001 From: Joscha Date: Fri, 21 Feb 2025 03:13:51 +0100 Subject: [PATCH] Name type parameters consistently --- euphoxide-bot/src/command.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/euphoxide-bot/src/command.rs b/euphoxide-bot/src/command.rs index 1826c73..7d8ca2d 100644 --- a/euphoxide-bot/src/command.rs +++ b/euphoxide-bot/src/command.rs @@ -151,8 +151,8 @@ pub trait CommandExt: Sized { impl CommandExt for C {} -pub struct Commands { - commands: Vec + Sync + Send>>, +pub struct Commands { + commands: Vec + Sync + Send>>, } impl Commands {