From 2e297efd79a59f383f5f4559ee7980c3b42bc97e Mon Sep 17 00:00:00 2001 From: Antony Jones Date: Tue, 23 Jun 2020 15:13:36 +0100 Subject: [PATCH] make formatting of synchronously consistent --- site/content/docs/03-run-time.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/content/docs/03-run-time.md b/site/content/docs/03-run-time.md index 1c2c0234ec..42a99bea70 100644 --- a/site/content/docs/03-run-time.md +++ b/site/content/docs/03-run-time.md @@ -50,7 +50,7 @@ If a function is returned from `onMount`, it will be called when the component i ``` -> This behaviour will only work when the function passed to `onMount` synchronously returns a value. `async` functions always return a `Promise`, and as such cannot *synchronously* return a function. +> This behaviour will only work when the function passed to `onMount` *synchronously* returns a value. `async` functions always return a `Promise`, and as such cannot *synchronously* return a function. #### `beforeUpdate`