Skip to content

Commit 0d485cd

Browse files
zappingmarcosmoura
authored andcommitted
docs(Chips): improve documentation descriptions (vuematerial#1745)
Typo fixed.
1 parent 12f0a40 commit 0d485cd

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/app/pages/Components/Chips/Chips.vue

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
<template>
1010
<page-container centered :title="$t('pages.chips.title')">
1111
<div class="page-container-section">
12-
<p>Chips represent complex entities in small blocks, such as a contact. They can be used as a way for a user create arbitrary items, like categories or tags.</p>
12+
<p>Chips represent complex entities in small blocks, such as a contact. They can be used as a way for a user to create arbitrary items, like categories or tags.</p>
1313
</div>
1414

1515
<div class="page-container-section">
1616
<h2>Standalone Chip</h2>
1717

18-
<p>A chip can be used standalone, without any connection with another chip. It can be used to be like a badge or a category of a entity in your application. You can specify if your chip can be deletable and clickable:</p>
18+
<p>A chip can be used as standalone, without any connection with another chip. It can be used like a badge or a category of an entity in your application. You can specify if your chip can be deletable and clickable:</p>
1919
<code-example title="Single" :component="examples['single-chip']" />
2020

2121
<api-item title="API - md-chip">
@@ -29,28 +29,28 @@
2929
<div class="page-container-section">
3030
<h2>Editable model</h2>
3131

32-
<p>Sometimes we need to edit the set of items on screen, for example. When editing tags, the user may need to remove/add tags. In this case you can use the editable chips, that is the default behaviour:</p>
32+
<p>Sometimes we need to edit the set of items on screen, for example, when editing tags, the user may need to remove/add tags. In this case you can use the editable chips, that is the default behaviour:</p>
3333
<code-example title="Editable" :component="examples['editable']" />
3434
</div>
3535

3636
<div class="page-container-section">
3737
<h2>Readonly</h2>
3838

39-
<p>Let's think in a entity that have tags. Sometimes you might need to show all of them in a single row, but not enable the user to edit them. You can achieve that using the <code>md-chips</code> component, with a static option:</p>
39+
<p>Let's think in an entity that have tags. Sometimes you might need to show all of them in a single row, but not allow the user to edit them. You can achieve that using the <code>md-chips</code> component, with a static option:</p>
4040
<code-example title="Static" :component="examples['static']" />
4141
</div>
4242

4343
<div class="page-container-section">
4444
<h2>Custom Template</h2>
4545

46-
<p>Sometimes we need to show more information about a chip, so we want to have a custom HTML structure for the chip itself. To create that scenario we can use the template scope. In this case all you have to do is to create a slot with your custom template and you're good to go. Take a loot at this example:</p>
46+
<p>Sometimes we need to show more information about a chip, so we want to have a custom HTML structure for the chip itself. To create that scenario we can use the template scope. In this case all you have to do is to create a slot with your custom template and you're good to go. Take a look at this example:</p>
4747
<code-example title="Scoped Slot" :component="examples['chip-custom-template']" />
4848
</div>
4949

5050
<div class="page-container-section">
5151
<h2>Duplicated Chip</h2>
5252

53-
<p>Chips would reject insertion while a chip was duplicated. You could customize feedback style of the duplicated chip:</p>
53+
<p>Chips would reject insertion if a chip is duplicated. You can customize feedback style of the duplicated chip:</p>
5454
<code-example title="Duplicated Feedback" :component="examples['duplicated-feedback']" />
5555
</div>
5656

0 commit comments

Comments
 (0)