Skip to content

Commit

Permalink
[easy] Fix a typo for "synchronizing" in log string (#150236)
Browse files Browse the repository at this point in the history
* [easy] Fix a typo for "synchronizing" in log string

* Include artifacts from yarn build compile
  • Loading branch information
aifreedom authored May 24, 2022
1 parent ac0a282 commit 397fa12
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/lib/builtInExtensions.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ function writeControlFile(control) {
fs.writeFileSync(controlFilePath, JSON.stringify(control, null, 2));
}
function getBuiltInExtensions() {
log('Syncronizing built-in extensions...');
log('Synchronizing built-in extensions...');
log(`You can manage built-in extensions with the ${ansiColors.cyan('--builtin')} flag`);
const control = readControlFile();
const streams = [];
Expand Down
2 changes: 1 addition & 1 deletion build/lib/builtInExtensions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ function writeControlFile(control: IControlFile): void {
}

export function getBuiltInExtensions(): Promise<void> {
log('Syncronizing built-in extensions...');
log('Synchronizing built-in extensions...');
log(`You can manage built-in extensions with the ${ansiColors.cyan('--builtin')} flag`);

const control = readControlFile();
Expand Down

0 comments on commit 397fa12

Please sign in to comment.