Skip to content

Commit

Permalink
fix(readme.md): fix some typos
Browse files Browse the repository at this point in the history
Fix some typos in the readme files.

fix #15
  • Loading branch information
codeaye committed Sep 25, 2021
1 parent 040505f commit ac1d7fd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,15 @@ import { NgModule } from '@angular/core';
import { AppComponent } from './src/app/app.component';

/*Import*/
import { MathJaxModule } from 'mathjax-angular';
import { MathjaxModule } from 'mathjax-angular';

/*Configuration*/
@NgModule({
declarations: [
AppComponent
],
imports: [
MathJaxModule.forRoot(/*Optional Config*/)
MathjaxModule.forRoot(/*Optional Config*/)
],
providers: [],
bootstrap: [AppComponent]
Expand Down Expand Up @@ -94,10 +94,10 @@ re-use the same module instance as the root module. So simply
configure the module with the *.forChild* method.

```typescript
import { MathJaxModule } from 'mathjax-angular';
import { MathjaxModule } from 'mathjax-angular';
...
imports: [
MathJaxModule.forChild()
MathjaxModule.forChild()
]
...
```
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"srv-app": "wait-on dist/mathjax-lib/public-api.d.ts && run-p -r -n \"ng s -- -c={1} --port 3300 -o\" --",
"dev": "npm run clean && run-p -r -n \"wth:*\" \"srv-app -- {1}\" --",
"semantic-release": "semantic-release",
"commit": "git-cz"
"commit": "git add . && git-cz"
},
"private": true,
"dependencies": {
Expand Down
8 changes: 4 additions & 4 deletions projects/mathjax-lib/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,15 @@ import { NgModule } from '@angular/core';
import { AppComponent } from './src/app/app.component';

/*Import*/
import { MathJaxModule } from 'mathjax-angular';
import { MathjaxModule } from 'mathjax-angular';

/*Configuration*/
@NgModule({
declarations: [
AppComponent
],
imports: [
MathJaxModule.forRoot(/*Optional Config*/)
MathjaxModule.forRoot(/*Optional Config*/)
],
providers: [],
bootstrap: [AppComponent]
Expand Down Expand Up @@ -94,10 +94,10 @@ re-use the same module instance as the root module. So simply
configure the module with the *.forChild* method.

```typescript
import { MathJaxModule } from 'mathjax-angular';
import { MathjaxModule } from 'mathjax-angular';
...
imports: [
MathJaxModule.forChild()
MathjaxModule.forChild()
]
...
```
Expand Down

0 comments on commit ac1d7fd

Please sign in to comment.