Skip to content

Commit 6d98c9b

Browse files
Merge pull request #13 from Cube707/typos
some more typos
2 parents 4601739 + 031204d commit 6d98c9b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/content/docs/guides/api.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ const button = mb.createButtonMountable(context.file.path, buttonOptions);
179179
mb.wrapInMDRC(button, container, component);
180180
```
181181
182-
If you are daring you can skipt the intermediate objects.
182+
If you are daring you can skip the intermediate objects.
183183
184184
```js
185185
// First we get an instance of the Meta Bind plugin, then we access the API.

src/content/docs/guides/viewFields.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ The first section contains [Bind Targets](/obsidian-meta-bind-plugin-docs/guides
159159
The second section contains the JavaScript code.
160160

161161
When rendered, the JS view field displays the value returned in the JavaScript section just as [JS Engine](https://github.com/mProjectsCode/obsidian-js-engine-plugin) would.
162-
This means you can to things like rendering markdown.
162+
This means you can do things like rendering markdown.
163163

164164
The same variables and APIs that are [available in JS Engine](https://github.com/mProjectsCode/obsidian-js-engine-plugin#api-docs) code blocks are also available in JS view fields.
165165
The bound variables are available in the `context.bound` object.

src/content/docs/reference/buttonActions/inlineJS.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ interface InlineJSButtonAction {
2020
```
2121

2222
The button configuration is available as a **read only** variable in the script as `context.buttonConfig`.
23-
Aditional information about the button is available in the `context.buttonContext` object.
23+
Additional information about the button is available in the `context.buttonContext` object.
2424
See [Button Context](/obsidian-meta-bind-plugin-docs/api/interfaces/buttoncontext/) for more information.
2525

2626
:::tip[Multiline Strings]

src/content/docs/reference/buttonActions/runJavaScript.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ interface JSButtonAction {
2121
```
2222

2323
The button configuration is available as a **read only** variable in the script as `context.buttonConfig`.
24-
Aditional information about the button is available in the `context.buttonContext` object.
24+
Additional information about the button is available in the `context.buttonContext` object.
2525
See [Button Context](/obsidian-meta-bind-plugin-docs/api/interfaces/buttoncontext/) for more information.
2626
The args is passed to the script as `context.args`.
2727

0 commit comments

Comments
 (0)