diff --git a/documentation/docs/03-template-syntax/07-@render.md b/documentation/docs/03-template-syntax/07-@render.md index ecdf5cc216..c5907f8dcf 100644 --- a/documentation/docs/03-template-syntax/07-@render.md +++ b/documentation/docs/03-template-syntax/07-@render.md @@ -17,7 +17,7 @@ To render a [snippet](snippet), use a `{@render ...}` tag. The expression can be an identifier like `sum`, or an arbitrary JavaScript expression: ```svelte -{@render (cool ? coolSnippet : lameSnippet)()} +{@render (cool ? coolSnippet : boringSnippet)()} ``` ## Optional snippets diff --git a/documentation/docs/03-template-syntax/18-class.md b/documentation/docs/03-template-syntax/18-class.md index 880a34e9ec..c1a55597d0 100644 --- a/documentation/docs/03-template-syntax/18-class.md +++ b/documentation/docs/03-template-syntax/18-class.md @@ -27,8 +27,8 @@ If the value is an object, the truthy keys are added: -