From 36ded1a741b4f15775fde2ee1a5b3ad9082571db Mon Sep 17 00:00:00 2001 From: Yanming Deng Date: Mon, 9 May 2022 18:09:02 +0800 Subject: [PATCH] docs: fix typo (#35439) * chore: fixed typo * chore: fixed typo+1 --- components/menu/index.en-US.md | 2 +- components/menu/index.zh-CN.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/menu/index.en-US.md b/components/menu/index.en-US.md index ed3779b3e0..499cda09f0 100644 --- a/components/menu/index.en-US.md +++ b/components/menu/index.en-US.md @@ -138,7 +138,7 @@ Define `type` as `group` to make as group: const groupItem = { type: 'group', // Must have label: 'My Group', - chidlren: [], + children: [], }; ``` diff --git a/components/menu/index.zh-CN.md b/components/menu/index.zh-CN.md index bef93ff60e..5236119b85 100644 --- a/components/menu/index.zh-CN.md +++ b/components/menu/index.zh-CN.md @@ -138,7 +138,7 @@ return ; const groupItem = { type: 'group', // Must have label: 'My Group', - chidlren: [], + children: [], }; ```