Explorar o código

fixed unclosed parenthesis (#2536)

Elesei %!s(int64=3) %!d(string=hai) anos
pai
achega
cd715ed283
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      packages/docs/src/en/magics/watch.md

+ 1 - 1
packages/docs/src/en/magics/watch.md

@@ -53,7 +53,7 @@ When the `<button>` is pressed, `foo.bar` will be set to "bob", and "{bar: 'bob'
 
 ```alpine
 <!-- 🚫 Infinite loop -->
-<div x-data="{ foo: { bar: 'baz', bob: 'lob' }}" x-init="$watch('foo', value => foo.bob = foo.bar">
+<div x-data="{ foo: { bar: 'baz', bob: 'lob' }}" x-init="$watch('foo', value => foo.bob = foo.bar)">
     <button @click="foo.bar = 'bob'">Update</button>
 </div>
 ```