Skip to content

Commit 85a9744

Browse files
committed
doc: typo
1 parent 993c123 commit 85a9744

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

docs/content/docs/1.guides/1.registry-scripts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ export default defineNuxtConfig({
103103
scripts: {
104104
registry: {
105105
googleAnalytics: isDevelopment
106-
? 'mock' // script won't load unless manually callined load()
106+
? 'mock' // script won't load unless manually calling load()
107107
: {
108108
id: 'YOUR_ID',
109109
},

docs/content/scripts/analytics/google-analytics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ export default defineNuxtConfig({
164164
scripts: {
165165
registry: {
166166
googleAnalytics: isDevelopment
167-
? 'mock' // script won't load unless manually callined load()
167+
? 'mock' // script won't load unless manually calling load()
168168
: {
169169
id: 'YOUR_ID',
170170
},

docs/content/scripts/analytics/matomo-analytics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ export default defineNuxtConfig({
145145
scripts: {
146146
registry: {
147147
matomoAnalytics: isDevelopment
148-
? 'mock' // script won't load unless manually callined load()
148+
? 'mock' // script won't load unless manually calling load()
149149
: {
150150
siteId: 'YOUR_SITE_ID',
151151
},

docs/content/scripts/analytics/plausible-analytics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ export default defineNuxtConfig({
147147
scripts: {
148148
registry: {
149149
plausibleAnalytics: isDevelopment
150-
? 'mock' // script won't load unless manually callined load()
150+
? 'mock' // script won't load unless manually calling load()
151151
: {
152152
domain: 'YOUR_DOMAIN',
153153
},

docs/content/scripts/marketing/clarity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ export default defineNuxtConfig({
163163
scripts: {
164164
registry: {
165165
clarity: isDevelopment
166-
? 'mock' // script won't load unless manually callined load()
166+
? 'mock' // script won't load unless manually calling load()
167167
: {
168168
id: 'YOUR_ID',
169169
},

docs/content/scripts/marketing/hotjar.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ export default defineNuxtConfig({
153153
scripts: {
154154
registry: {
155155
hotjar: isDevelopment
156-
? 'mock' // script won't load unless manually callined load()
156+
? 'mock' // script won't load unless manually calling load()
157157
: {
158158
id: 123456 // your id
159159
},

docs/content/scripts/tracking/google-tag-manager.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ export default defineNuxtConfig({
150150
scripts: {
151151
registry: {
152152
googleTagManager: isDevelopment
153-
? 'mock' // script won't load unless manually callined load()
153+
? 'mock' // script won't load unless manually calling load()
154154
: {
155155
id: 'YOUR_ID',
156156
},

docs/content/scripts/tracking/meta-pixel.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ export default defineNuxtConfig({
177177
scripts: {
178178
registry: {
179179
metaPixel: isDevelopment
180-
? 'mock' // script won't load unless manually callined load()
180+
? 'mock' // script won't load unless manually calling load()
181181
: {
182182
id: 'YOUR_ID',
183183
},

docs/content/scripts/tracking/segment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ export default defineNuxtConfig({
154154
scripts: {
155155
registry: {
156156
segment: isDevelopment
157-
? 'mock' // script won't load unless manually callined load()
157+
? 'mock' // script won't load unless manually calling load()
158158
: {
159159
writeKey: 'YOUR_WRITE_KEY',
160160
},

docs/content/scripts/tracking/x-pixel.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ export default defineNuxtConfig({
176176
scripts: {
177177
registry: {
178178
xPixel: isDevelopment
179-
? 'mock' // script won't load unless manually callined load()
179+
? 'mock' // script won't load unless manually calling load()
180180
: {
181181
id: 'YOUR_ID',
182182
},

0 commit comments

Comments
 (0)