Skip to content

Commit 1093709

Browse files
committed
doc corrections
1 parent d64d961 commit 1093709

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export default {
6262
}
6363
```
6464

65-
You have an `<extension>` tag in your project available now:
65+
You have an `<extensionpoint>` tag in your project available now:
6666

6767
```html
6868
<template>
@@ -72,7 +72,7 @@ You have an `<extension>` tag in your project available now:
7272
</template>
7373
```
7474

75-
The *vue-extensionpoints* plugin renders the hooked elements replacing the <extension> element, one after another. It's up to you what the plugin is rendering: One plugin can render a simple `<div>` element with an image, the next plugin (same hook!) can render a complicated component with variables, sub-components etc. The `extensionpoint` renders them one after another. You only have to make sure that your components do what they promise: in the sample case above, `FooListElement` should render a <li> element - because it will be rendered within an <ul> element. But thee are no constraints, you are free to choose.
75+
The *vue-extensionpoints* plugin renders the hooked elements replacing the <extensionpoint> element, one after another. It's up to you what the plugin is rendering: One plugin can render a simple `<div>` element with an image, the next plugin (same hook!) can render a complicated component with variables, sub-components etc. The `extensionpoint` renders them one after another. You only have to make sure that your components do what they promise: in the sample case above, `FooListElement` should render a \<li\> element - because it will be rendered within an \<ul\> element. But thee are no constraints, you are free to choose.
7676

7777

7878
## Development
@@ -81,19 +81,19 @@ You have an idea, improvement, found a bug? Don't hesitate to contact me. PRs an
8181

8282
## License
8383

84-
vue-extensionpoints is licensed under the [MIT](https://opensource.org/licenses/mit-license.php) license
84+
`vue-extensionpoints` is licensed under the [MIT](https://opensource.org/licenses/mit-license.php) license
8585

86-
#### Compile and minifiy library for production
86+
#### Compiles and minifies library for production
8787
```
8888
npm run build-lib
8989
```
9090

91-
#### Run your tests
91+
#### Runs your tests
9292
Currently there are no tests, because of three important causes:
9393

94-
a) I'm lazy
95-
b) tests are not necessary here
96-
c) I'm lazy - did I say that already?
94+
* I'm lazy
95+
* tests are not necessary here
96+
* I'm lazy - did I say that already?
9797

9898
```
9999
npm run test

0 commit comments

Comments
 (0)