diff --git a/manuscript/CH07_gross_adding_scripting.adoc b/manuscript/CH07_gross_adding_scripting.adoc index f954c60..d415bdf 100644 --- a/manuscript/CH07_gross_adding_scripting.adoc +++ b/manuscript/CH07_gross_adding_scripting.adoc @@ -354,7 +354,7 @@ You can also install it from npm, or vendor it from your own server. The main interface of Alpine is a set of HTML attributes, the main one of which is `x-data`. The content of `x-data` is a JavaScript expression which evaluates to an object, whose properties we can access in the element. For our counter, the only state is the current number, so let's create an object with one property: -.Counter in Alpine, line 1 +.Counter with Alpine, line 1 [source,html] ----