diff --git a/docs/site/app/(no-sidebar)/blog/not-found.tsx b/docs/site/app/(no-sidebar)/blog/not-found.tsx index aa02770b60095..62bf345e8bebb 100644 --- a/docs/site/app/(no-sidebar)/blog/not-found.tsx +++ b/docs/site/app/(no-sidebar)/blog/not-found.tsx @@ -14,7 +14,7 @@ export default function NotFound(): JSX.Element { content={

- The latest updates and releases from the Turbo team at Vercel. + The latest updates and releases from the Turborepo team at Vercel.

{posts.map((post) => { if ("isExternal" in post.data) { diff --git a/docs/site/app/(no-sidebar)/confirm/page.tsx b/docs/site/app/(no-sidebar)/confirm/page.tsx index 3e70f45a3d310..b5adb1b600700 100644 --- a/docs/site/app/(no-sidebar)/confirm/page.tsx +++ b/docs/site/app/(no-sidebar)/confirm/page.tsx @@ -8,12 +8,12 @@ export function Confirm(): JSX.Element {

Thanks so much!

Keep an eye on your inbox for product updates and announcements - from Turbo and Vercel. + from Turborepo and Vercel.

{" "}

Thanks,
- The Turbo Team + The Turborepo Team

diff --git a/docs/site/app/_components/footer.tsx b/docs/site/app/_components/footer.tsx index c3576add0643d..0fc01b0aa4caa 100644 --- a/docs/site/app/_components/footer.tsx +++ b/docs/site/app/_components/footer.tsx @@ -172,8 +172,8 @@ function FooterContent(): JSX.Element {
Subscribe to our newsletter

- Subscribe to the Turbo newsletter and stay updated on new releases - and features, guides, and case studies. + Subscribe to the Turborepo newsletter and stay updated on new + releases and features, guides, and case studies.

diff --git a/docs/site/app/_components/logos.tsx b/docs/site/app/_components/logos.tsx index 3ddc7c4832895..10ccca13ca480 100644 --- a/docs/site/app/_components/logos.tsx +++ b/docs/site/app/_components/logos.tsx @@ -134,7 +134,7 @@ export function TurborepoLogo({ return ( -Supply a package.json script that will run tasks using Turbo. +Supply a package.json script that will run tasks using Turborepo. Example `package.json` with a `build` script: diff --git a/docs/site/content/repo-docs/messages/invalid-env-prefix.mdx b/docs/site/content/repo-docs/messages/invalid-env-prefix.mdx index 62e7efb5ba9df..d32e46e755841 100644 --- a/docs/site/content/repo-docs/messages/invalid-env-prefix.mdx +++ b/docs/site/content/repo-docs/messages/invalid-env-prefix.mdx @@ -6,7 +6,7 @@ description: Learn more about errors with invalid environment variable prefixes ## Why this error occurred When declaring environment variables in your `turbo.json`, you cannot prefix them with `$`. This -was an old syntax for declaring a dependency on an environment variable that was deprecated in Turbo 1.5. +was an old syntax for declaring a dependency on an environment variable that was deprecated in Turborepo 1.5. ```json title="./turbo.json" { diff --git a/docs/site/content/repo-docs/reference/run.mdx b/docs/site/content/repo-docs/reference/run.mdx index b8622752040f9..5e555b6231ab2 100644 --- a/docs/site/content/repo-docs/reference/run.mdx +++ b/docs/site/content/repo-docs/reference/run.mdx @@ -369,11 +369,11 @@ By default, `turbo` will use `grouped` logs in CI environments and `stream` logs turbo run build --log-order=stream ``` -| Option | Description | -| --------- | ----------------------------------------- | -| `stream` | Show output as soon as it is available | -| `grouped` | Group output by task | -| `auto` | Turbo decides based on its own heuristics | +| Option | Description | +| --------- | ------------------------------------------- | +| `stream` | Show output as soon as it is available | +| `grouped` | Group output by task | +| `auto` | `turbo` decides based on its own heuristics | ### `--log-prefix