Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
cartercanedy committed Jan 21, 2025
1 parent 167c2f5 commit e91b36f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/project/src/graph.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ impl Graph {
None
}

/// Build a subgraph starting from `start_node` from the nodes of this grpah
/// Build a subgraph starting from `start_node` from the nodes of this graph
pub fn subgraph(&self, start_node: u32) -> Graph {
let Some(_) = self.adjacencies.get(&start_node) else {
let mut graph = Graph::new();
Expand Down
2 changes: 1 addition & 1 deletion crates/project/src/task_inventory.rs
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ impl Inventory {
})
.collect::<HashMap<_, _>>();

// map node idxs to task labels for retreival if a cycle is found
// map node idxs to task labels for retrieval if a cycle is found
let indexes = nodes
.iter()
.map(|(label, (idx, _, _, _))| (*idx, *label))
Expand Down

0 comments on commit e91b36f

Please sign in to comment.