Skip to content

Commit

Permalink
docs: Fix original_toml doc comments
Browse files Browse the repository at this point in the history
  • Loading branch information
epage committed Mar 19, 2024
1 parent 00d542f commit 627217a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cargo/core/manifest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ impl Manifest {
pub fn document(&self) -> &toml_edit::ImDocument<String> {
&self.document
}
/// The [`TomlManifest`] with all fields expanded
/// The [`TomlManifest`] as parsed from [`Manifest::document`]
pub fn original_toml(&self) -> &TomlManifest {
&self.original_toml
}
Expand Down Expand Up @@ -664,7 +664,7 @@ impl VirtualManifest {
pub fn document(&self) -> &toml_edit::ImDocument<String> {
&self.document
}
/// The [`TomlManifest`] with all fields expanded
/// The [`TomlManifest`] as parsed from [`VirtualManifest::document`]
pub fn original_toml(&self) -> &TomlManifest {
&self.original_toml
}
Expand Down

0 comments on commit 627217a

Please sign in to comment.