diff --git a/site/content/tutorial/10-transitions/05-custom-js-transitions/text.md b/site/content/tutorial/10-transitions/05-custom-js-transitions/text.md index 19a7b9fce3..25b8d0bd52 100644 --- a/site/content/tutorial/10-transitions/05-custom-js-transitions/text.md +++ b/site/content/tutorial/10-transitions/05-custom-js-transitions/text.md @@ -16,7 +16,7 @@ function typewriter(node, { speed = 1 }) { } const text = node.textContent; - const duration = text.length / (speed * 0.01) ; + const duration = text.length / (speed * 0.01); return { duration,