Skip to content

Commit 52e47bc

Browse files
committed
chore: fix some typos in comments
Signed-off-by: kevincatty <[email protected]>
1 parent 3ee2336 commit 52e47bc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ Contributing to examples helps the Turborepo community by showcasing how to use
192192
> [!IMPORTANT]
193193
> As Turborepo usage has grown, the community has contributed more and more examples to the repository. While this is exciting for us on the core team, we're unable to maintain the full surface area of every example, given the constant updates across the breadth of tooling that Turborepo works with in the examples.
194194
>
195-
> Because of this, a handful of the examples are explictly marked as maintained by the core team. For the rest, we work with the community to keep them as up to date and correct as possible. If you find a problem with a community-supported template, we ask that you do not open a GitHub Issue for it. Instead, please open a pull request with the needed fixes.
195+
> Because of this, a handful of the examples are explicitly marked as maintained by the core team. For the rest, we work with the community to keep them as up to date and correct as possible. If you find a problem with a community-supported template, we ask that you do not open a GitHub Issue for it. Instead, please open a pull request with the needed fixes.
196196
197197
The `basic` example is the default used by `create-turbo`.
198198

clippy.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ disallowed-types = [
44
]
55
disallowed-methods = [
66
# We forbid the use of the Hasher::hash trait item to prevent misuse of
7-
# hashing Vcs. Vcs must themselves be hashable (to be useable in maps and
7+
# hashing Vcs. Vcs must themselves be hashable (to be usable in maps and
88
# sets), but the hash **is not stable** and must not be observed.
99
# Use Xxh3Hash64Hasher::write with value's bytes directly.
1010
"std::hash::Hasher::hash",

crates/turborepo-fixed-map/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ impl<K: Ord, V> FixedMap<K, V> {
3434

3535
/// Insert a value for a key.
3636
///
37-
/// There is no guarentee that the provided value will be the one returned.
37+
/// There is no guarantee that the provided value will be the one returned.
3838
pub fn insert(&self, key: &K, value: V) -> Result<&V, UnknownKey> {
3939
let item_index = self
4040
.inner

0 commit comments

Comments
 (0)