Skip to content

Commit 5d38ae3

Browse files
authored
Merge pull request #4484 from omahs/patch-1
Fix typos
2 parents 4e6b74f + 976f241 commit 5d38ae3

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

dev/docs/javascript-code.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -85,18 +85,18 @@ Will result with `this.$opts` being:
8585
A component has the below shown properties & methods available for use. As mentioned above, most of these should be used within the `setup()` function to make the requirements/dependencies of the component clear.
8686

8787
```javascript
88-
// The root element that the compontent has been applied to.
88+
// The root element that the component has been applied to.
8989
this.$el
9090

91-
// A map of defined element references within the compontent.
91+
// A map of defined element references within the component.
9292
// See "Element References" above.
9393
this.$refs
9494

95-
// A map of defined multi-element references within the compontent.
95+
// A map of defined multi-element references within the component.
9696
// See "Element References" above.
9797
this.$manyRefs
9898

99-
// Options defined for the compontent.
99+
// Options defined for the component.
100100
this.$opts
101101

102102
// The registered name of the component, usually kebab-case.
@@ -160,4 +160,4 @@ window.$components.firstOnElement(element, name);
160160

161161
There are a range of available events that are emitted as part of a public & supported API for accessing or extending JavaScript libraries & components used in the system.
162162

163-
Details on these events can be found in the [JavaScript Public Events file](javascript-public-events.md).
163+
Details on these events can be found in the [JavaScript Public Events file](javascript-public-events.md).

dev/docs/javascript-public-events.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ This event is called before the markdown input editor CodeMirror instance is cre
4242

4343
#### Event Data
4444

45-
- `editorViewConfig` - An [EditorViewConfig](https://codemirror.net/docs/ref/#view.EditorViewConfig) object that will eventially be passed when creating the CodeMirror EditorView instance.
45+
- `editorViewConfig` - An [EditorViewConfig](https://codemirror.net/docs/ref/#view.EditorViewConfig) object that will eventually be passed when creating the CodeMirror EditorView instance.
4646

4747
##### Example
4848

@@ -252,4 +252,4 @@ window.addEventListener('library-cm6::configure-theme', event => {
252252
detail.registerHighlightStyle(highlightStyleBuilder);
253253
});
254254
```
255-
</details>
255+
</details>

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ Security information for administering a BookStack instance can be found on the
102102

103103
If you'd like to be notified of new potential security concerns you can [sign-up to the BookStack security mailing list](https://updates.bookstackapp.com/signup/bookstack-security-updates).
104104

105-
If you would like to report a security concern, details of doing so can [can be found here](https://github.com/BookStackApp/BookStack/blob/development/.github/SECURITY.md).
105+
If you would like to report a security concern, details of doing so [can be found here](https://github.com/BookStackApp/BookStack/blob/development/.github/SECURITY.md).
106106

107107
## ♿ Accessibility
108108

0 commit comments

Comments
 (0)