Skip to content

Commit

Permalink
Fix some minor documenation nits
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchmindtree committed Mar 23, 2022
1 parent a8ed4f6 commit 225c89a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions forc-pkg/src/pkg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ pub enum SourceGitPinnedParseError {
/// The name specified on the left hand side of the `=` in a depenedency declaration under
/// `[dependencies]` within a forc manifest.
///
/// The name of a dependency may differ from the package name in the case that they dependency's
/// The name of a dependency may differ from the package name in the case that the dependency's
/// `package` field is specified.
///
/// For example, in the following, `foo` is assumed to be both the package name and the dependency
Expand Down Expand Up @@ -249,7 +249,7 @@ impl BuildPlan {
bail!("Manifest dependencies do not match");
}

// Ensure the pkg names of all nodes match their manifest.
// Ensure the pkg names of all nodes match their associated manifests.
for node in self.graph.node_indices() {
let pkg = &self.graph[node];
let id = pkg.id();
Expand Down

0 comments on commit 225c89a

Please sign in to comment.