这是indexloc提供的服务,不要输入任何密码
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ Contributing to examples helps the Turborepo community by showcasing how to use
> [!IMPORTANT]
> 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.
>
> 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.
> 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.

The `basic` example is the default used by `create-turbo`.

Expand Down
2 changes: 1 addition & 1 deletion clippy.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ disallowed-types = [
]
disallowed-methods = [
# We forbid the use of the Hasher::hash trait item to prevent misuse of
# hashing Vcs. Vcs must themselves be hashable (to be useable in maps and
# hashing Vcs. Vcs must themselves be hashable (to be usable in maps and
# sets), but the hash **is not stable** and must not be observed.
# Use Xxh3Hash64Hasher::write with value's bytes directly.
"std::hash::Hasher::hash",
Expand Down
2 changes: 1 addition & 1 deletion crates/turborepo-fixed-map/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ impl<K: Ord, V> FixedMap<K, V> {

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