From fe96839c9fe1ce82150e5a4396235cb3d1fb76e2 Mon Sep 17 00:00:00 2001 From: Santiago Petrone Date: Mon, 9 Dec 2024 08:26:03 -0300 Subject: [PATCH] fix: typo in reactivity-fundamentals.md (#3118) --- 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)