From 574311f6e47afb516e020cd53d066644604663fb Mon Sep 17 00:00:00 2001 From: Santiago Petrone Date: Thu, 28 Nov 2024 06:42:37 -0300 Subject: [PATCH] fix: typo in reactivity-fundamentals.md --- src/guide/essentials/reactivity-fundamentals.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/essentials/reactivity-fundamentals.md b/src/guide/essentials/reactivity-fundamentals.md index 47e6e20f6e..ee38d11a77 100644 --- a/src/guide/essentials/reactivity-fundamentals.md +++ b/src/guide/essentials/reactivity-fundamentals.md @@ -467,7 +467,7 @@ Due to these limitations, we recommend using `ref()` as the primary API for decl ### As Reactive Object Property \*\* {#ref-unwrapping-as-reactive-object-property} -A ref is automatically unwrapped when accessed or mutated as a property of a reactive object. In other words, it behaves like a normal property : +A ref is automatically unwrapped when accessed or mutated as a property of a reactive object. In other words, it behaves like a normal property: ```js const count = ref(0)