From 54715d40ef22f2500481214b497351597febde00 Mon Sep 17 00:00:00 2001 From: omahs <73983677+omahs@users.noreply.github.com> Date: Thu, 31 Aug 2023 09:58:59 +0200 Subject: [PATCH 1/3] fix typo --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 66bf93471..b4c6f2b3b 100644 --- a/readme.md +++ b/readme.md @@ -102,7 +102,7 @@ Security information for administering a BookStack instance can be found on the 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). -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). +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). ## ♿ Accessibility From 415dab9936cbab7254042feb844107ade7815fc6 Mon Sep 17 00:00:00 2001 From: omahs <73983677+omahs@users.noreply.github.com> Date: Thu, 31 Aug 2023 10:00:45 +0200 Subject: [PATCH 2/3] fix typos --- dev/docs/javascript-code.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dev/docs/javascript-code.md b/dev/docs/javascript-code.md index 9820839a4..ba7d79972 100644 --- a/dev/docs/javascript-code.md +++ b/dev/docs/javascript-code.md @@ -85,18 +85,18 @@ Will result with `this.$opts` being: 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. ```javascript -// The root element that the compontent has been applied to. +// The root element that the component has been applied to. this.$el -// A map of defined element references within the compontent. +// A map of defined element references within the component. // See "Element References" above. this.$refs -// A map of defined multi-element references within the compontent. +// A map of defined multi-element references within the component. // See "Element References" above. this.$manyRefs -// Options defined for the compontent. +// Options defined for the component. this.$opts // The registered name of the component, usually kebab-case. @@ -160,4 +160,4 @@ window.$components.firstOnElement(element, name); 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. -Details on these events can be found in the [JavaScript Public Events file](javascript-public-events.md). \ No newline at end of file +Details on these events can be found in the [JavaScript Public Events file](javascript-public-events.md). From 976f241ae068801f9278c1ec34f9fc1d7d0d8821 Mon Sep 17 00:00:00 2001 From: omahs <73983677+omahs@users.noreply.github.com> Date: Thu, 31 Aug 2023 10:01:56 +0200 Subject: [PATCH 3/3] fix typo --- dev/docs/javascript-public-events.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev/docs/javascript-public-events.md b/dev/docs/javascript-public-events.md index 1e95dc8c5..95300ddd3 100644 --- a/dev/docs/javascript-public-events.md +++ b/dev/docs/javascript-public-events.md @@ -42,7 +42,7 @@ This event is called before the markdown input editor CodeMirror instance is cre #### Event Data -- `editorViewConfig` - An [EditorViewConfig](https://codemirror.net/docs/ref/#view.EditorViewConfig) object that will eventially be passed when creating the CodeMirror EditorView instance. +- `editorViewConfig` - An [EditorViewConfig](https://codemirror.net/docs/ref/#view.EditorViewConfig) object that will eventually be passed when creating the CodeMirror EditorView instance. ##### Example @@ -252,4 +252,4 @@ window.addEventListener('library-cm6::configure-theme', event => { detail.registerHighlightStyle(highlightStyleBuilder); }); ``` - \ No newline at end of file +