Skip to content

Commit

Permalink
fix(core): typo in nx update log (#27036)
Browse files Browse the repository at this point in the history
(cherry picked from commit 521c3f3)
  • Loading branch information
JamesHenry authored and FrozenPandaz committed Jul 22, 2024
1 parent 75bd775 commit d4907d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion e2e/nx/src/misc.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -701,7 +701,7 @@ describe('global installation', () => {
expect(() => {
output = runCommand(`nx show projects`);
}).not.toThrow();
expect(output).toContain('Its time to update Nx');
expect(output).toContain(`It's time to update Nx`);
updateFile('node_modules/nx/package.json', packageJsonContents);
});

Expand Down
2 changes: 1 addition & 1 deletion packages/nx/bin/nx.ts
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ function warnIfUsingOutdatedGlobalInstall(
'For more information, see https://nx.dev/more-concepts/global-nx'
);
output.warn({
title: `Its time to update Nx 🎉`,
title: `It's time to update Nx 🎉`,
bodyLines,
});
}
Expand Down

0 comments on commit d4907d3

Please sign in to comment.