Skip to content

Commit

Permalink
fix(cli): typo in telemetry command (#3602)
Browse files Browse the repository at this point in the history
this commit fixes a small typo in the telemetry command,
where we describe how to toggle the feature
  • Loading branch information
tmwrnr committed Sep 13, 2022
1 parent 94b6330 commit 3013f5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/task-telemetry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const taskTelemetry = async (flags: ConfigFlags, sys: d.CompilerSystem, l
const prompt = logger.dim(sys.details.platform === 'windows' ? '>' : '$');
const isEnabling = flags.args.includes('on');
const isDisabling = flags.args.includes('off');
const INFORMATION = `Opt in or our of telemetry. Information about the data we collect is available on our website: ${logger.bold(
const INFORMATION = `Opt in or out of telemetry. Information about the data we collect is available on our website: ${logger.bold(
'https://stenciljs.com/telemetry'
)}`;
const THANK_YOU = `Thank you for helping to make Stencil better! 💖`;
Expand Down

0 comments on commit 3013f5e

Please sign in to comment.