Skip to content

Commit 0bfc3d4

Browse files
authored
fix(internal): Fix typo in deprecation message
Remove duplicate dot at EOL.
1 parent 8fecd58 commit 0bfc3d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/internal/deprecated.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export function deprecated(opts: DeprecatedOptions): void {
4141
}
4242

4343
if (opts.proposed) {
44-
message += `. Please use ${opts.proposed} instead.`;
44+
message += `. Please use ${opts.proposed} instead`;
4545
}
4646

4747
console.warn(`${message}.`);

0 commit comments

Comments
 (0)