Skip to content

Commit 8daeb2b

Browse files
docs: fix typos in documentation files (#10124)
Co-authored-by: Anthony Shew <[email protected]>
1 parent 1dc2bba commit 8daeb2b

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

buildcontainer/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Should you wish to see working [examples](#examples) instead of reading
1616

1717
## Credits
1818

19-
This project is rather cookbook combing various projects into one. Special to [osxcross](https://github.com/tpoechtrager/osxcross) for amazing cross-compile environment for OSX.
19+
This project is rather cookbook combining various projects into one. Special to [osxcross](https://github.com/tpoechtrager/osxcross) for amazing cross-compile environment for OSX.
2020

2121
## Docker
2222

crates/turborepo-wax/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -300,8 +300,8 @@ within a glob expression so long as they do not split tree wildcards (e.g.,
300300
can be negated by preceding the corresponding character with a minus `-`. Flags
301301
are toggled in the order in which they appear within `(?...)`.
302302

303-
The only supported flag is the case-insensitivty flag `i`. By default, glob
304-
expressions use the same case sensitivity as the target platforms's file system
303+
The only supported flag is the case-insensitivity flag `i`. By default, glob
304+
expressions use the same case sensitivity as the target platforms' file system
305305
APIs (case-sensitive on Unix and case-insensitive on Windows), but `i` can be
306306
used to toggle this explicitly as needed. For example,
307307
`(?-i)photos/**/*.(?i){jpg,jpeg}` matches file paths beneath a `photos`
@@ -371,7 +371,7 @@ features = [
371371

372372
## Unsupported Path Features
373373

374-
Any components not recognized as separators nor patterns are interpreted as
374+
Any components not recognized as separators or patterns are interpreted as
375375
literals. In combination with strict rules, this means **some platform-specific
376376
path features cannot be used directly in globs**. This limitation is by design
377377
and additional code may be necessary to bridge this gap for some use cases.
@@ -433,7 +433,7 @@ assert!(glob.has_semantic_literals());
433433

434434
### Schemes and Prefixes
435435

436-
While globs can be rooted, they cannot include schemes nor Windows path
436+
While globs can be rooted, they cannot include schemes or Windows path
437437
prefixes. For example, the Windows UNC share path `\\server\share\src` cannot be
438438
represented directly as a glob.
439439

@@ -468,7 +468,7 @@ match nor capture some literal byte strings.
468468

469469
At the time of writing, Wax is experimental and unstable. It is possible that
470470
glob expression syntax and semantics may change between versions in the `0.y.z`
471-
series without warning nor deprecation.
471+
series without warning or deprecation.
472472

473473
[miette]: https://github.com/zkat/miette
474474
[nym]: https://github.com/olson-sean-k/nym

docs/site/content/repo-docs/guides/generating-code.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ generators within a repo configured with Turborepo.
6262

6363
1. Generators are automatically discovered, loaded, and organized per workspace (no need to manually `load` them within a single configuration file)
6464
2. Generators are automatically run from the root of the workspace where they are defined
65-
3. Generators can be invoked from anywhere within your repo (or outside out it via the [`--root`](/repo/docs/reference/generate#--root-path) flag)
65+
3. Generators can be invoked from anywhere within your repo (or outside it via the [`--root`](/repo/docs/reference/generate#--root-path) flag)
6666
4. TypeScript generators are supported with zero configuration
6767
5. `plop` is not required to be installed as a dependency of your repo
6868

docs/site/content/repo-docs/guides/migrating-from-nx.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ We encourage incremental migration, meaning you will have both of Nx and Turbore
433433

434434
- **Migrating one task at a time**: Changing `nx run lint` to `turbo run lint`
435435
- **Migrating one package/project at a time**: Changing `nx run-many lint test --projects=web` to `turbo run lint test --filter=web`
436-
- **Double-running some of your tasks**: To ensure stability, you may choose to run `turbo run lint` **and** `nx run lint` while you're still getting comfortable and builiding certainty in the early phases of your migration.
436+
- **Double-running some of your tasks**: To ensure stability, you may choose to run `turbo run lint` **and** `nx run lint` while you're still getting comfortable and building certainty in the early phases of your migration.
437437

438438
### Installing dependencies where they're used
439439

docs/site/content/repo-docs/guides/tools/vitest.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ With this in place, run `turbo test && turbo report` to create a merged coverage
191191

192192
### Using Vitest's Workspace feature
193193

194-
The Vitest Workspace feature doesn't follow the same model as a [package manager Workspace](/repo/docs/crafting-your-repository/structuring-a-repository). Instead, it uses a root script that then reaches out into each package in the repository to handle the tests in that repsective package.
194+
The Vitest Workspace feature doesn't follow the same model as a [package manager Workspace](/repo/docs/crafting-your-repository/structuring-a-repository). Instead, it uses a root script that then reaches out into each package in the repository to handle the tests in that respective package.
195195

196196
In this model, there aren't package boundaries, from a modern JavaScript ecosystem perspective. This means you can't rely on Turborepo's caching, since Turborepo leans on those package boundaries.
197197

0 commit comments

Comments
 (0)