From 3d37ed38c737cd72412fb62acfa2f699ce7c55b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=9C=8B=E5=BD=A9=E8=99=B9=E7=9A=84=E4=BA=BA?= <42316353+rainbowatcher@users.noreply.github.com> Date: Thu, 17 Nov 2022 21:04:10 +0800 Subject: [PATCH] fix(examples): fix command args case (#5635) --- examples/commands/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/commands/index.html b/examples/commands/index.html index f07748f81..35a307593 100644 --- a/examples/commands/index.html +++ b/examples/commands/index.html @@ -53,11 +53,11 @@ { name: 'command_arguments_wild' }, { name: 'command_arguments_struct', - args: { Person: { name: 'ferris', age: 6 } } + args: { person: { name: 'ferris', age: 6 } } }, { name: 'command_arguments_tuple_struct', - args: { InlinePerson: ['ferris', 6] } + args: { inlinePerson: ['ferris', 6] } } ]