docs: Fix original_toml doc comments

This commit is contained in:
Ed Page 2024-03-19 10:18:41 -05:00
parent 00d542f58a
commit 627217aa62

View File

@ -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
}
@ -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
}