Skip to content

Commit 2b9284d

Browse files
committed
[ntuple][NFC] Rename fieldNames to joinFieldNames
1 parent 4de7cd0 commit 2b9284d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tree/ntuple/v7/inc/ROOT/RNTupleJoinTable.hxx

+4-4
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,9 @@ private:
113113
/////////////////////////////////////////////////////////////////////////////
114114
/// \brief Create an a new RNTupleJoinTable for the RNTuple represented by the provided page source.
115115
///
116-
/// \param[in] fieldNames The names of the join fields to use for the join table. Only integral-type fields are
116+
/// \param[in] joinFieldNames The names of the join fields to use for the join table. Only integral-type fields are
117117
/// allowed.
118-
RNTupleJoinTable(const std::vector<std::string> &fieldNames) : fJoinFieldNames(fieldNames) {}
118+
RNTupleJoinTable(const std::vector<std::string> &joinFieldNames) : fJoinFieldNames(joinFieldNames) {}
119119

120120
public:
121121
RNTupleJoinTable(const RNTupleJoinTable &other) = delete;
@@ -127,11 +127,11 @@ public:
127127
/////////////////////////////////////////////////////////////////////////////
128128
/// \brief Create an RNTupleJoinTable from an existing RNTuple.
129129
///
130-
/// \param[in] fieldNames The names of the join fields to use for the join table. Only integral-type fields are
130+
/// \param[in] joinFieldNames The names of the join fields to use for the join table. Only integral-type fields are
131131
/// allowed.
132132
///
133133
/// \return A pointer to the newly-created join table.
134-
static std::unique_ptr<RNTupleJoinTable> Create(const std::vector<std::string> &fieldNames);
134+
static std::unique_ptr<RNTupleJoinTable> Create(const std::vector<std::string> &joinFieldNames);
135135

136136
/////////////////////////////////////////////////////////////////////////////
137137
/// \brief Add an entry mapping to the join table.

0 commit comments

Comments
 (0)