소스 검색

Adds missing closing brace

Eric 4 년 전
부모
커밋
0d09b71834
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      packages/docs/src/en/upgrade-guide.md

+ 1 - 1
packages/docs/src/en/upgrade-guide.md

@@ -182,7 +182,7 @@ Alpine V2 observes a return value of `false` as a desire to run `preventDefault`
 
 ```html
 <!-- 🚫 Before -->
-<div x-data="{ blockInput() { return false }">
+<div x-data="{ blockInput() { return false } }">
     <input type="text" @input="blockInput()">
 </div>