diff --git a/documentation/blog/2023-02-21-streaming-snapshots-sveltekit.md b/documentation/blog/2023-02-21-streaming-snapshots-sveltekit.md
index a030e8fc41..c70f946e48 100644
--- a/documentation/blog/2023-02-21-streaming-snapshots-sveltekit.md
+++ b/documentation/blog/2023-02-21-streaming-snapshots-sveltekit.md
@@ -147,7 +147,7 @@ For example, here is how you would capture and restore the value of a textarea:
```
diff --git a/documentation/docs/98-reference/.generated/compile-errors.md b/documentation/docs/98-reference/.generated/compile-errors.md
index b32bc6b89c..1e8c7ed3a8 100644
--- a/documentation/docs/98-reference/.generated/compile-errors.md
+++ b/documentation/docs/98-reference/.generated/compile-errors.md
@@ -424,6 +424,12 @@ Imports of `svelte/internal/*` are forbidden. It contains private runtime code w
The arguments keyword cannot be used within the template or at the top level of a component
```
+### invalid_bind_directive
+
+```
+Bind directive getter/setter values (`bind:thing={ getter, setter }`) must be two JavaScript expressions separated by a single comma and enclosed in curly braces
+```
+
### js_parse_error
```
diff --git a/documentation/examples/05-bindings/00-text-inputs/App.svelte b/documentation/examples/05-bindings/00-text-inputs/App.svelte
index 9ec139df21..414c5af827 100644
--- a/documentation/examples/05-bindings/00-text-inputs/App.svelte
+++ b/documentation/examples/05-bindings/00-text-inputs/App.svelte
@@ -2,5 +2,5 @@
let name = '';
-
+