From 88fb676d878355b1c7e56a7e3920279b8b503ad2 Mon Sep 17 00:00:00 2001 From: chikara-chan <771334038@qq.com> Date: Tue, 9 May 2017 16:00:14 +0800 Subject: [PATCH] docs: fix confused syntax --- examples/docs/en-US/layout.md | 8 ++++---- examples/docs/en-US/tabs.md | 2 +- examples/docs/en-US/upload.md | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/examples/docs/en-US/layout.md b/examples/docs/en-US/layout.md index 8f76696ab..e56d8cfa1 100644 --- a/examples/docs/en-US/layout.md +++ b/examples/docs/en-US/layout.md @@ -325,8 +325,8 @@ Taking example by Bootstrap's responsive design, four breakpoints are preset: xs | offset | number of spacing on the left side of the grid | number | — | 0 | | push | number of columns that grid moves to the right | number | — | 0 | | pull | number of columns that grid moves to the left | number | — | 0 | -| xs | `<768px` Responsive columns or column props object | number/object (i.e: {span: 4, offset: 4}) | — | — | -| sm | `≥768px` Responsive columns or column props object | number/object (i.e: {span: 4, offset: 4}) | — | — | -| md | `≥992` Responsive columns or column props object | number/object (i.e: {span: 4, offset: 4}) | — | — | -| lg | `≥1200` Responsive columns or column props object | number/object (i.e: {span: 4, offset: 4}) | — | — | +| xs | `<768px` Responsive columns or column props object | number/object (i.g. {span: 4, offset: 4}) | — | — | +| sm | `≥768px` Responsive columns or column props object | number/object (i.g. {span: 4, offset: 4}) | — | — | +| md | `≥992` Responsive columns or column props object | number/object (i.g. {span: 4, offset: 4}) | — | — | +| lg | `≥1200` Responsive columns or column props object | number/object (i.g. {span: 4, offset: 4}) | — | — | diff --git a/examples/docs/en-US/tabs.md b/examples/docs/en-US/tabs.md index d46408141..2cfe48da0 100644 --- a/examples/docs/en-US/tabs.md +++ b/examples/docs/en-US/tabs.md @@ -355,5 +355,5 @@ Only card type Tabs support addable & closeable. |---------- |-------- |---------- |------------- |-------- | | label | title of the tab | string | — | — | | disabled | whether Tab is disabled | boolean | — | false | -| name | identifier corresponding to the activeName of Tabs, representing the alias of the tab-pane | string | — | ordinal number of the tab-pane in the sequence, i.e. the first tab-pane is '1' | +| name | identifier corresponding to the activeName of Tabs, representing the alias of the tab-pane | string | — | ordinal number of the tab-pane in the sequence, i.g. the first tab-pane is '1' | | closable | whether Tab is closable | boolean | — | false | diff --git a/examples/docs/en-US/upload.md b/examples/docs/en-US/upload.md index 0ddebbbc2..dd2b250e8 100644 --- a/examples/docs/en-US/upload.md +++ b/examples/docs/en-US/upload.md @@ -361,7 +361,7 @@ on-progress | hook function when some progress occurs | function(event, file, fi on-change | hook function when select file or upload file success or upload file fail | function(file, fileList) | — | — | before-upload | hook function before uploading with the file to be uploaded as its parameter. If `false` or a `Promise` is returned, uploading will be aborted | function(file) | — | — thumbnail-mode | whether thumbnail is displayed | boolean | — | false -file-list | default uploaded files, i.e: [{name: 'food.jpeg', url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100'}] | array | — | [] +file-list | default uploaded files, i.g. [{name: 'food.jpeg', url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100'}] | array | — | [] list-type | type of fileList | string | text/picture/picture-card | text | auto-upload | whether to auto upload file | boolean | — | true | http-request | override default xhr behavior, allowing you to implement your own upload-file's request | function | — | — |