Skip to content

Commit 254ae32

Browse files
committed
fix review
1 parent af5d7e7 commit 254ae32

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/iceberg/inheritable_metadata.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)