Browse Source

fix docs for csp

Caleb Porzio 1 year ago
parent
commit
bac758e925
2 changed files with 2 additions and 2 deletions
  1. 1 1
      packages/docs/package.json
  2. 1 1
      packages/docs/src/en/advanced/csp.md

+ 1 - 1
packages/docs/package.json

@@ -1,6 +1,6 @@
 {
     "name": "@alpinejs/docs",
-    "version": "3.13.3-revision.1",
+    "version": "3.13.3-revision.2",
     "description": "The documentation for Alpine",
     "author": "Caleb Porzio",
     "license": "MIT"

+ 1 - 1
packages/docs/src/en/advanced/csp.md

@@ -58,7 +58,7 @@ To provide a glimpse of how using the CSP build might feel, here is a copy-pasta
 
     <body>
         <div x-data="counter">
-            <button x-on:click="count++"></button>
+            <button x-on:click="increment"></button>
 
             <span x-text="count"></span>
         </div>