Skip to content

Commit 90aa217

Browse files
committed
[ntuple] Correct backticking in RNTupleDescriptor.hxx
1 parent 4ef2614 commit 90aa217

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -315,9 +315,9 @@ public:
315315
// the page belongs
316316
struct RPageInfo {
317317
private:
318-
/// The sum of the elements of all the pages must match the corresponding fNElements field in fColumnRanges
318+
/// The sum of the elements of all the pages must match the corresponding `fNElements` field in `fColumnRanges`
319319
std::uint32_t fNElements = std::uint32_t(-1);
320-
/// The meaning of fLocator depends on the storage backend.
320+
/// The meaning of `fLocator` depends on the storage backend.
321321
RNTupleLocator fLocator;
322322
/// If true, the 8 bytes following the serialized page are an xxhash of the on-disk page data
323323
bool fHasChecksum = false;
@@ -390,9 +390,9 @@ public:
390390
/// \brief Extend this RPageRange to fit the given RColumnRange.
391391
///
392392
/// To do so, prepend as many synthetic RPageInfos as needed to cover the range in `columnRange`.
393-
/// `RPageInfo`s are constructed to contain as many elements of type `element` given a page size
393+
/// RPageInfos are constructed to contain as many elements of type `element` given a page size
394394
/// limit of `pageSize` (in bytes); the locator for the referenced pages is `kTypePageZero`.
395-
/// This function is used to make up `RPageRange`s for clusters that contain deferred columns.
395+
/// This function is used to make up RPageRanges for clusters that contain deferred columns.
396396
/// \return The number of column elements covered by the synthesized RPageInfos
397397
std::size_t ExtendToFitColumnRange(const RColumnRange &columnRange,
398398
const ROOT::Internal::RColumnElementBase &element, std::size_t pageSize);
@@ -700,7 +700,7 @@ public:
700700
class RClusterDescriptorIterable;
701701
class RExtraTypeInfoDescriptorIterable;
702702

703-
/// Modifiers passed to `CreateModel`
703+
/// Modifiers passed to CreateModel()
704704
struct RCreateModelOptions {
705705
private:
706706
/// If set to true, projected fields will be reconstructed as such. This will prevent the model to be used
@@ -1407,7 +1407,7 @@ public:
14071407

14081408
/// Add column and page ranges for columns created during late model extension missing in this cluster. The locator
14091409
/// type for the synthesized page ranges is `kTypePageZero`. All the page sources must be able to populate the
1410-
/// 'zero' page from such locator. Any call to `CommitColumnRange()` and `CommitSuppressedColumnRanges()`
1410+
/// 'zero' page from such locator. Any call to CommitColumnRange() and CommitSuppressedColumnRanges()
14111411
/// should happen before calling this function.
14121412
RClusterDescriptorBuilder &AddExtendedColumnRanges(const RNTupleDescriptor &desc);
14131413

0 commit comments

Comments
 (0)