Skip to content

Commit 33a6466

Browse files
committed
Correct documentation errors
1 parent 60f3ef9 commit 33a6466

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/src/lib/lintplugin/3-config.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ title: Config Reference
1010
Following the [ESLint conventions](https://eslint.org/docs/latest/extend/shareable-configs) for sharing configurations, each of the configurations
1111
are named with a different prefix to indicate what kind of configuration it is.
1212

13-
Each configuration might consist of 1 or more sub configurations
14-
Each of the tables belows contains information about what rules have been configured for each sub configuration and for what files.
13+
Each configuration might consist of 1 or more sub configurations.
14+
Each of the tables below contains information about what rules have been configured for each sub configuration and for what files.
1515

1616
Some of the rules have URL links to documentation; you can click on the name of the rule to see the associated documentation page.
1717

docs/src/modules/2-bundle/6-compiling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ If you intend for your bundle to be consumed from other bundles, do the followin
6464
"./*": "./dist/*.js"
6565
},
6666
"scripts": {
67-
"prepare": "yarn buildtools tsc"
67+
"postinstall": "yarn buildtools tsc"
6868
}
6969
}
7070
```

docs/src/modules/2-bundle/7-type_map.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ export const translate = RuneFunctions.translate;
9292
```
9393
9494
> [!WARNING]
95-
> The decorators returned by `createTypeMap` will only populated the type map returned by the same call to `createTypeMap`. Multiple
95+
> The decorators returned by `createTypeMap` will only populate the type map returned by the same call to `createTypeMap`. Multiple
9696
> calls to `createTypeMap` will return entirely new and unrelated decorators and type map instances.
9797
>
9898
> If you need to use the decorators across files, re-export the decorators as shown above instead of calling `createTypeMap` multiple times.

0 commit comments

Comments
 (0)