diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 551f39823f711..c0542f83a4b22 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -21,7 +21,7 @@ Thank you for your interest in contributing to Turborepo! ## General dependencies -You will need to have these dependences installed on your machine to work on this repository: +You will need to have these dependencies installed on your machine to work on this repository: - [Rust](https://www.rust-lang.org/tools/install) ([Repository toolchain](https://github.com/vercel/turborepo/blob/main/rust-toolchain.toml)) - [NodeJS](https://nodejs.org/en) v20 diff --git a/docs/site/content/repo-docs/messages/recursive-turbo-invocations.mdx b/docs/site/content/repo-docs/messages/recursive-turbo-invocations.mdx index 0510e824db6c3..bc4705afdeca0 100644 --- a/docs/site/content/repo-docs/messages/recursive-turbo-invocations.mdx +++ b/docs/site/content/repo-docs/messages/recursive-turbo-invocations.mdx @@ -1,6 +1,6 @@ --- title: Recursive `turbo` invocations -description: Learn more about errors with recursive sccripts and tasks in Turborepo. +description: Learn more about errors with recursive scripts and tasks in Turborepo. --- ## Why this error occurred diff --git a/docs/site/content/repo-docs/reference/configuration.mdx b/docs/site/content/repo-docs/reference/configuration.mdx index 72ac5696c9620..40b57aa2eddc6 100644 --- a/docs/site/content/repo-docs/reference/configuration.mdx +++ b/docs/site/content/repo-docs/reference/configuration.mdx @@ -341,7 +341,7 @@ An allowlist of environment variables that should be made available to this task { "tasks": { "build": { - // Values will available within `build` scripts + // Values will be available within `build` scripts "passThroughEnv": ["AWS_SECRET_KEY", "GITHUB_TOKEN"] } } diff --git a/docs/site/content/repo-docs/reference/run.mdx b/docs/site/content/repo-docs/reference/run.mdx index b0233d921e10f..119b437325813 100644 --- a/docs/site/content/repo-docs/reference/run.mdx +++ b/docs/site/content/repo-docs/reference/run.mdx @@ -67,7 +67,7 @@ Specify caching sources for the run. Accepts a comma-separated list of options: - `local`: Use the local filesystem cache - `remote`: Use the Remote Cache -When an a caching source is omitted, reading and writing are both disabled. +When a caching source is omitted, reading and writing are both disabled. Cache sources use the following values: diff --git a/docs/site/content/repo-docs/reference/turbo-codemod.mdx b/docs/site/content/repo-docs/reference/turbo-codemod.mdx index d49b50546d6fe..65913b895c2d3 100644 --- a/docs/site/content/repo-docs/reference/turbo-codemod.mdx +++ b/docs/site/content/repo-docs/reference/turbo-codemod.mdx @@ -13,7 +13,7 @@ Codemods are transformations that run on your codebase programmatically. This al ## Usage -First, ensure that you've ran your package manager's install command. +First, ensure that you've run your package manager's install command. ```bash title="Terminal" npx @turbo/codemod [transform] [path] [--dry] [--print] diff --git a/packages/turbo-codemod/src/transforms/README.md b/packages/turbo-codemod/src/transforms/README.md index c5b32ce1494e2..e485c12276e11 100644 --- a/packages/turbo-codemod/src/transforms/README.md +++ b/packages/turbo-codemod/src/transforms/README.md @@ -27,7 +27,7 @@ export type Transformer = { ## Writing a Transform -Transforms are ran using the [TransformRunner](../runner/Runner.ts). This class is designed to make writing transforms as simple as possible by abstracting away all of the boilerplate that determines what should be logged, saved, or output as a result. +Transforms are run using the [TransformRunner](../runner/Runner.ts). This class is designed to make writing transforms as simple as possible by abstracting away all of the boilerplate that determines what should be logged, saved, or output as a result. To use the TransformRunner: