Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix simple typo, concatentation -> concatenation #1311

Merged
merged 1 commit into from Nov 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/compress/concat-strings.js
Expand Up @@ -12,7 +12,7 @@ concat_1: {

var e = 1 + x() + 2 + "X" + 3 + "boo";

// be careful with concatentation with "\0" with octal-looking strings.
// be careful with concatenation with "\0" with octal-looking strings.
var f = "\0" + 360 + "\0" + 8 + "\0";
}
expect: {
Expand Down
2 changes: 1 addition & 1 deletion test/compress/template-string.js
Expand Up @@ -119,7 +119,7 @@ template_string_with_predefined_constants: {
var barber = 'This is ${0/0}';

var a = "4194304";
var b = "16777216"; // Potential for further concatentation
var b = "16777216"; // Potential for further concatenation
var c = `${4**14}`; // Not worth converting
}
}
Expand Down