From f3e4a7da599e398d76cde0f99d4c40c3123ec19a Mon Sep 17 00:00:00 2001 From: NotNotARobot <164791169+NotNotARobot@users.noreply.github.com> Date: Fri, 3 Jan 2025 15:44:10 -0500 Subject: [PATCH] chore: add missing language fences to CONTRIBUTING.md (#9671) ### Description This PR improves the file via the use of language fences, ensuring that the GFM pre-processor will highlight the code correctly. --- CONTRIBUTING.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ff301dd17f292..4050835116b0e 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -98,14 +98,14 @@ cargo test -p - Updating integration tests - ``` + ```bash turbo run build --filter=cli pnpm --filter turborepo-tests-integration test:interactive ``` You can pass a test name to run a single test, or a directory to run all tests in that directory. - ``` + ```bash pnpm --filter turborepo-tests-integration test:interactive tests/turbo-help.t ``` @@ -226,7 +226,7 @@ Once you've created your example (with prior approval, as discussed above), you To test out the experience of your example with `create-turbo`, run `create-turbo` with the `--example` flag pointed to a URL to your example's source code: -``` +```bash npx create-turbo@latest --example https://github.com/your-org/your-repo/tree/your-branch/... ```