Skip to content

Commit ce353f6

Browse files
committed
typos
1 parent b7cb19a commit ce353f6

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

crates/wasm-pkg-core/src/resolver.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -887,7 +887,7 @@ impl PublishPlan {
887887
pub fn take_ready(&self) -> BTreeSet<PackageSpec> {
888888
self.dependents
889889
.nodes_iter()
890-
// there are no dependents on `self.dendents[id]`
890+
// there are no dependents on `self.dependents[id]`
891891
.filter(|id| {
892892
self.dependents
893893
.neighbors_directed(*id, Direction::Incoming)

crates/wkg/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ impl PublishArgs {
335335

336336
let client = self.common.get_client().await?;
337337
// 2. Publish our packages in "waves" to the actual registries ensuring all
338-
// possible dependency free pacakges are published in the same group
338+
// possible dependency free packages are published in the same group
339339
while !plan.is_empty() {
340340
let ready_for_publish = plan.take_ready();
341341
for spec in &ready_for_publish {

0 commit comments

Comments
 (0)