From 70f16295bd3bd1aff1b30f2daf1d691e96be109e Mon Sep 17 00:00:00 2001 From: Vadim Macagon Date: Fri, 29 Jul 2016 12:43:48 +0700 Subject: [PATCH] docs: Improve English docs for the Card component (#2537) --- components/card/index.en-US.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/components/card/index.en-US.md b/components/card/index.en-US.md index e1ba39263d..357214aedd 100644 --- a/components/card/index.en-US.md +++ b/components/card/index.en-US.md @@ -5,11 +5,11 @@ title: Card cols: 1 --- -Common card container. +Simple rectangular container ## When to use -The most basic card container. You can use it to contain text, lists, pictures and paragraphs. +A card can be used to display content related to a single subject. The content can consist of multiple elements of varying type and size. ## API @@ -20,6 +20,6 @@ The most basic card container. You can use it to contain text, lists, pictures a | Property | Description | Type | Default | |----------|----------------|----------|--------------| | title | Card title | React.Element | - | -| extra | Corner content of card | React.Element | - | -| bordered | Whether a border is set | Boolean | true | -| bodyStyle | Custom style for content area | Object | - | +| extra | Content to render in the top-right corner of the card | React.Element | - | +| bordered | Toggles rendering of the border around the card | Boolean | true | +| bodyStyle | Inline style to apply to the card content | Object | - |