Skip to content

Commit cd69a0f

Browse files
Merge pull request LucasLeandro1204#12 from luizperes/doc-editing
Docs reviewing/editing
2 parents b6df2b3 + 58cd8c0 commit cd69a0f

File tree

5 files changed

+21
-21
lines changed

5 files changed

+21
-21
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Vue Content Loading
22

3-
### Vue component to easily build (or use presets) SVG loading cards Facebook like.
3+
### Vue component to easily build or use presets for Facebook-like SVG loading cards.
44

55
> Inspired in [React Content Loader](https://github.com/danilowoz/react-content-loader)
66
7-
## So how it looks like?
7+
## So how does it look like?
88

99
Facebook
1010

@@ -16,14 +16,14 @@ Code
1616

1717
# Documentation & Examples
1818

19-
Documentation with all presets is available at [HERE](https://lucasleandro1204.github.io/vue-content-loading)
19+
Documentation with all presets is available [HERE](https://lucasleandro1204.github.io/vue-content-loading)
2020

2121
## Installation
2222

23-
Simple install via NPM
23+
Simple installation via NPM
2424

2525
``$ npm install vue-content-loading --save``
2626

2727
##### License
2828

29-
This project is licensed under the MIT license. See the LICENSE file for more details
29+
This project is licensed under the MIT license. See the [LICENSE file](./LICENSE) for more details

docs/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Vue Content Loading
22

3-
**Vue component to easily build (or use presets) SVG loading cards Facebook like**
3+
**Vue component to easily build or use presets for Facebook-like SVG loading cards**
44

55
> Inspired in [React Content Loader](https://github.com/danilowoz/react-content-loader)
66
@@ -12,4 +12,4 @@
1212

1313
## License
1414

15-
This project is licensed under the MIT license. See the LICENSE file for more details
15+
This project is licensed under the MIT license. See the [LICENSE file](https://github.com/LucasLeandro1204/vue-content-loading/blob/master/LICENSE) for more details.

docs/development.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Development
22

3-
Fork the repo then clone it
3+
Fork and clone the repo
44

55
``$ git clone [email protected]:YourUsername/vue-content-loading.git && cd vue-content-loading``
66

@@ -16,16 +16,16 @@ This will host the application at localhost:8080
1616

1717
## Production
1818

19-
To build for production run
19+
To build for production, run:
2020

2121
``$ npm run build``
2222

23-
The above command bundle the app and also features minification to help reduce file size
23+
The above command bundles and minifies the app files.
2424

2525
## Linting
2626

2727
``$ npm run lint``
2828

29-
To automatically fix the problems, run
29+
To automatically fix linting problems, run:
3030

3131
``$ npm run lint:fix``

docs/guide.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22

33
## Installation
44

5-
Simple install via NPM
5+
Simple installation via NPM
66

77
``$ npm install vue-content-loading --save``
88

99
## Usage
1010

11-
First import it
11+
Firstly, import it:
1212

1313
```javascript
1414
import { VclFacebook, VclInstagram } from 'vue-content-loading';
1515
```
1616

17-
Then define as component
17+
Then define it as a component
1818

1919
```vue
2020
<script>
@@ -27,7 +27,7 @@ Then define as component
2727
</script>
2828
```
2929

30-
Now you can use it like you use any other else component =)
30+
Now you can use it just like you use any other vue component =)
3131

3232
```vue
3333
<template>
@@ -36,11 +36,11 @@ Now you can use it like you use any other else component =)
3636
</template>
3737
```
3838

39-
*You can bind custom attrs to presets too xd*
39+
*You may as well bind custom attrs to presets xd*
4040

4141
## Options
4242

43-
Every preset accept the props below, but presets *maybe* have custom props
43+
All presets accept the props below, but they *may* have other custom props
4444

4545
| Prop | Type | Default | Description |
4646
|:---------:|:------:|:-------:|:----------------:|
@@ -50,7 +50,7 @@ Every preset accept the props below, but presets *maybe* have custom props
5050
| primary | String | #f0f0f0 | SVG Background |
5151
| secondary | String | #e0e0e0 | Animation color |
5252

53-
Color props are required to be HEX with hash prefix.
53+
Color props are required to be *HEX* with a proper pound sign ('#') as its prefix.
5454

5555
*Props are validate, so it minimize mistakes xd*
5656

@@ -78,4 +78,4 @@ It's really simple to build a preset, you only need to know the basics of SVG
7878
</template>
7979
```
8080

81-
*If you let vue-content-loading component empty, the default one will be facebook*
81+
*If you do not specify a vue-content-loading component, Facebook's preset will be used as default*

docs/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8">
5-
<title>Vue Content Loading - SVG loading cards Facebook like.</title>
5+
<title>Vue Content Loading - Facebook-like SVG loading cards.</title>
66
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
7-
<meta name="description" content="Vue component to easily build (or use presets) SVG loading cards Facebook like">
7+
<meta name="description" content="Vue component to easily build or use presets for Facebook-like loading cards">
88
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
99
<link href="https://fonts.googleapis.com/css?family=Ubuntu:400,500,700" rel="stylesheet">
1010
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css" rel="stylesheet">

0 commit comments

Comments
 (0)