Skip to content

Commit

Permalink
fix(internal): Fix typo in deprecation message (#1316)
Browse files Browse the repository at this point in the history
  • Loading branch information
ST-DDT committed Aug 29, 2022
1 parent 8fecd58 commit 7b18404
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/internal/deprecated.ts
Expand Up @@ -41,7 +41,7 @@ export function deprecated(opts: DeprecatedOptions): void {
}

if (opts.proposed) {
message += `. Please use ${opts.proposed} instead.`;
message += `. Please use ${opts.proposed} instead`;
}

console.warn(`${message}.`);
Expand Down

0 comments on commit 7b18404

Please sign in to comment.