File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ class ICEBERG_EXPORT InheritableMetadata {
4444 virtual ~InheritableMetadata () = default ;
4545
4646 // / \brief Apply inheritable metadata to a manifest entry.
47- // / \param entry The manifest entry to modify in-place .
47+ // / \param entry The manifest entry to modify.
4848 // / \return The modified manifest entry with inherited metadata applied.
4949 virtual Result<ManifestEntry> Apply (ManifestEntry& entry) = 0;
5050};
@@ -62,7 +62,7 @@ class ICEBERG_EXPORT BaseInheritableMetadata : public InheritableMetadata {
6262 std::string manifest_location);
6363
6464 // / \brief Apply inheritance rules to a manifest entry.
65- // / \param entry The manifest entry to modify in-place .
65+ // / \param entry The manifest entry to modify.
6666 // / \return The modified manifest entry.
6767 Result<ManifestEntry> Apply (ManifestEntry& entry) override ;
6868
@@ -90,7 +90,7 @@ class ICEBERG_EXPORT CopyInheritableMetadata : public InheritableMetadata {
9090 explicit CopyInheritableMetadata (int64_t snapshot_id);
9191
9292 // / \brief Apply copy inheritance rules.
93- // / \param entry The manifest entry to modify in-place .
93+ // / \param entry The manifest entry to modify.
9494 // / \return The modified manifest entry.
9595 Result<ManifestEntry> Apply (ManifestEntry& entry) override ;
9696
You can’t perform that action at this time.
0 commit comments