diff --git a/modules/ROOT/partials/integrations/svelte-tech-ref.adoc b/modules/ROOT/partials/integrations/svelte-tech-ref.adoc
index 8c884b7938..3fbf247b59 100644
--- a/modules/ROOT/partials/integrations/svelte-tech-ref.adoc
+++ b/modules/ROOT/partials/integrations/svelte-tech-ref.adoc
@@ -1,6 +1,6 @@
Covered in this section:
-* xref:configuring-the-tinymce-svelte-integration[Configuring the TinyMCE Svelte integration]
+* xref:configuring-the-tinymce-svelte-integration[Configuring the {productname} Svelte integration]
** xref:apikey[apiKey]
** xref:licensekey[licenseKey]
** xref:channel[channel]
@@ -13,6 +13,7 @@ Covered in this section:
* xref:component-binding[Component binding]
* xref:event-binding[Event binding]
+
[[configuring-the-tinymce-svelte-integration]]
== Configuring the TinyMCE Svelte integration
@@ -254,9 +255,9 @@ let text = '';
Functions can be bound to editor events, such as:
-[source,jsx]
+[source,svelte]
----
-
+
----
When the handler is called (*handlerFunction* in this example), it is called with two arguments:
@@ -265,8 +266,26 @@ When the handler is called (*handlerFunction* in this example), it is called wit
`+editor+`:: A reference to the editor.
+=== Example of event binding
+
+[source,svelte]
+----
+
+
+
+
+
+----
+
[TIP]
-Ensure event names are specified in lower-case (event names are case-sensitive).
+Specify event names in lower-case (event names are case-sensitive).
The following events are available:
@@ -282,10 +301,10 @@ The following events are available:
* `+change+`
* `+clearundos+`
* `+click+`
-* `+CommentChange+`
-* `+CompositionEnd+`
-* `+CompositionStart+`
-* `+CompositionUpdate+`
+* `+commentchange+`
+* `+compositionend+`
+* `+compositionstart+`
+* `+compositionupdate+`
* `+contextmenu+`
* `+copy+`
* `+cut+`