diff --git a/e2e/nx/src/misc.test.ts b/e2e/nx/src/misc.test.ts index 07a7a6a69bee0..59f05a519f9bb 100644 --- a/e2e/nx/src/misc.test.ts +++ b/e2e/nx/src/misc.test.ts @@ -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); }); diff --git a/packages/nx/bin/nx.ts b/packages/nx/bin/nx.ts index cecd6acd499c3..f141f6d17608f 100644 --- a/packages/nx/bin/nx.ts +++ b/packages/nx/bin/nx.ts @@ -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, }); }