diff --git a/docs/pages/docs/features/caching.mdx b/docs/pages/docs/features/caching.mdx index 0233e826d970e..a2d414c5ecf74 100644 --- a/docs/pages/docs/features/caching.mdx +++ b/docs/pages/docs/features/caching.mdx @@ -14,7 +14,7 @@ By default, [`turbo run`](../reference/command-line-reference#turbo-run-task1-ta Using [`pipeline`](../reference/configuration#pipeline), you can configure cache conventions across your Turborepo. -To override the default cache folder behavior, pass an array of globs to a [`pipeline..outputs`](../reference/configuration#outputs) array. Any file that satifies the glob patterns for a task will be treated as artifact. +To override the default cache folder behavior, pass an array of globs to a [`pipeline..outputs`](../reference/configuration#outputs) array. Any file that satisfies the glob patterns for a task will be treated as artifact. ```json { diff --git a/docs/pages/docs/getting-started.mdx b/docs/pages/docs/getting-started.mdx index b50329968a631..1acb641ef521b 100644 --- a/docs/pages/docs/getting-started.mdx +++ b/docs/pages/docs/getting-started.mdx @@ -56,7 +56,7 @@ The `turbo` package is a little shell that will install the proper `@turborepo/* ### Add `turbo` to `package.json` -In your root `package.json`, add a key `turbo`. If your git repo's base branch is NOT `origin/master` then you need to specify a `baseBranch` too (for example, our's is set to `origin/main`). +In your root `package.json`, add a key `turbo`. If your git repo's base branch is NOT `origin/master` then you need to specify a `baseBranch` too (for example, ours is set to `origin/main`). ```json { diff --git a/docs/pages/docs/guides/migrate-from-lerna.mdx b/docs/pages/docs/guides/migrate-from-lerna.mdx index 3fb8067eae1d6..211a46aeeb440 100644 --- a/docs/pages/docs/guides/migrate-from-lerna.mdx +++ b/docs/pages/docs/guides/migrate-from-lerna.mdx @@ -17,7 +17,7 @@ However, unlike Turborepo, Lerna has no ability to [cache prior work](../feature ### Task Scheduling -Turborepos's task scheduler is more powerful than Lerna's (which can only schedule one task at a time) thanks to [Turborepo pipelines](../features/pipelines). Turborepo reduces idle CPUs, saves compute resource, and collapse waterfalls—which ultimately results in faster overall builds. +Turborepo's task scheduler is more powerful than Lerna's (which can only schedule one task at a time) thanks to [Turborepo pipelines](../features/pipelines). Turborepo reduces idle CPUs, saves compute resource, and collapse waterfalls—which ultimately results in faster overall builds. Let's look at an example. Imagine you have two packages A and B each with 3 tasks `build`, `test`, and `bundle`, where A depends on B being built.... diff --git a/docs/pages/docs/upgrading-to-v1.mdx b/docs/pages/docs/upgrading-to-v1.mdx index 63a7954071b34..996cf09a20e6f 100644 --- a/docs/pages/docs/upgrading-to-v1.mdx +++ b/docs/pages/docs/upgrading-to-v1.mdx @@ -38,7 +38,7 @@ yarn add turbo -W --dev ## 3. Setup Remote Caching -As mentioned, Turborepo now provides zero-config Remote Caching through [Vercel](https://vercel.com?utm_source=turborepo.org&utm_medium=referral&utm_campaign=docs-link). Remote Caching is free for all Vercel plans during this transition period. Each Vercel account has a shared Remote Cache. This cache is shared across all enviroments (Development, Preview, and Production). +As mentioned, Turborepo now provides zero-config Remote Caching through [Vercel](https://vercel.com?utm_source=turborepo.org&utm_medium=referral&utm_campaign=docs-link). Remote Caching is free for all Vercel plans during this transition period. Each Vercel account has a shared Remote Cache. This cache is shared across all environments (Development, Preview, and Production). **Important**: turborepo.com allowed multiple caches (i.e. projects) per team (denoted through `--project` flag). With v1.x caching on Vercel, each Vercel account (user or team) has a single shared Remote Cache. If you were actively using multiple turborepo.com projects for your team, please let us know in [Discord](https://turborepo.org/discord).