Skip to content

Commit b79b4fa

Browse files
o3LLNilpo
authored andcommitted
Fixing typos and other minor text edits (tabler#6)
* edited unnecessary uppercase * Typo fix and capital letter * Removed duplicated "elements"
1 parent 20b8d39 commit b79b4fa

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# tabler-vue
22

33
*tabler-vue* is a collection of Vue.js components for implementing Tabler themed elements
4-
elements in your project. [Tabler](https://tabler.github.io) is a free and open-source
4+
in your project. [Tabler](https://tabler.github.io) is a free and open-source
55
HTML Dashboard UI Kit built on Bootstrap 4.
66

77
## Installation
@@ -22,7 +22,7 @@ The package is made up of 2 main folders:
2222
To setup and run a local copy:
2323
1. Clone this repo with `git clone https://github.com/tabler/tabler-vue.git`
2424
2. Run `yarn install` in root folder
25-
3. Run `Yarn dev`
25+
3. Run `yarn dev`
2626

2727
You should now be up and running with live browser reloading of the example website while you work
2828
on Tabler Vue components in the /src folder.
@@ -40,4 +40,4 @@ TODO: Write credits
4040

4141
## License
4242

43-
Released under the MIT License. See [LICENSE](LICENSE)
43+
Released under the MIT License. See [LICENSE](LICENSE)

src/components/Avatar.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export default {
3737
},
3838

3939
/**
40-
* returns true if status is defined and otherwise false
40+
* Returns true if status is defined and otherwise false
4141
* @returns {boolean}
4242
*/
4343
hasStatus() {

src/components/Grid/GridRow.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ export default {
22
name: 'grid-row',
33
props: {
44
/**
5-
* Mark as true if this row contais cards
5+
* Mark as true if this row contains cards
66
*/
77
cards: {default: false, types: Boolean}
88
},

src/components/ProgressBar.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
size: {default: '', type: String},
88

99
/**
10-
* percentage of the progress (0 - 100)
10+
* Percentage of the progress (0 - 100)
1111
*/
1212
progress: {default: 0, type: Number},
1313

src/components/Table/Table.js

+7-7
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
responsive: {default: true},
88

99
/**
10-
* Maks if table should contain .table-hover class
10+
* Marks if table should contain .table-hover class
1111
*/
1212
hover: {default: false},
1313

@@ -22,7 +22,7 @@ export default {
2222
outline: {default: false},
2323

2424
/**
25-
* optimise table for display cards
25+
* Optimise table for display cards
2626
*/
2727
cards: {default: false},
2828

@@ -33,15 +33,15 @@ export default {
3333
verticalAlign: {type: String},
3434

3535
/**
36-
* classes for the table element
37-
* it can be Object or String
36+
* Classes for the table element
37+
* It can be Object or String
3838
*/
3939
className: {}
4040
},
4141

4242
render(createElement) {
4343
/**
44-
* conditionally wraps table element inside .table-responsive div container
44+
* Conditionally wraps table element inside .table-responsive div container
4545
* based on the responsive property
4646
*/
4747
if(!!this.responsive) {
@@ -57,7 +57,7 @@ export default {
5757

5858
methods: {
5959
/**
60-
* Creates table html element with proper classes
60+
* Creates an html table element with proper classes
6161
* @param createElementFn createElement function from render function
6262
* @returns {*}
6363
*/
@@ -72,7 +72,7 @@ export default {
7272

7373
computed: {
7474
/**
75-
* returns table element classes
75+
* Returns table element classes
7676
* @returns Object
7777
*/
7878
tableClassName () {

0 commit comments

Comments
 (0)