fix(examples): fix command args case (#5635)

This commit is contained in:
看彩虹的人 2022-11-17 21:04:10 +08:00 committed by GitHub
parent 830ae97955
commit 3d37ed38c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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] }
}
]