From 9292a88e1c0f28c515b3c658111bfa9d1db60018 Mon Sep 17 00:00:00 2001 From: Dan King Date: Fri, 10 Jan 2025 15:33:26 -0500 Subject: [PATCH 1/2] fix: replace_with_mask links to replace functions It previously linked to the structural transforms (the section before the section containing `replace_with_mask`). --- docs/source/cpp/compute.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/cpp/compute.rst b/docs/source/cpp/compute.rst index ec53fb04688..15efcbea0c4 100644 --- a/docs/source/cpp/compute.rst +++ b/docs/source/cpp/compute.rst @@ -1316,7 +1316,7 @@ depending on a condition. input. If the nulls present on the first input, they will be promoted to the output, otherwise nulls will be chosen based on the first input values. - Also see: :ref:`replace_with_mask `. + Also see: :ref:`replace_with_mask `. Structural transforms ~~~~~~~~~~~~~~~~~~~~~ From aaf0d2451b416a85409caa10e643e18e003b3e71 Mon Sep 17 00:00:00 2001 From: Dan King Date: Mon, 13 Jan 2025 16:58:54 -0500 Subject: [PATCH 2/2] introduce a label --- docs/source/cpp/compute.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/source/cpp/compute.rst b/docs/source/cpp/compute.rst index 15efcbea0c4..44526c19a62 100644 --- a/docs/source/cpp/compute.rst +++ b/docs/source/cpp/compute.rst @@ -1316,7 +1316,7 @@ depending on a condition. input. If the nulls present on the first input, they will be promoted to the output, otherwise nulls will be chosen based on the first input values. - Also see: :ref:`replace_with_mask `. + Also see: :ref:`replace_with_mask `. Structural transforms ~~~~~~~~~~~~~~~~~~~~~ @@ -1882,6 +1882,8 @@ Structural transforms index *n* and the type code at index *n* is 2. * The indices ``2`` and ``7`` are invalid. +.. _cpp-compute-vector-replace-functions: + Replace functions ~~~~~~~~~~~~~~~~~