From cd2c208f9309b874fbb94b847cafd23ef84a39dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20S=C3=B6derqvist?= Date: Thu, 30 Oct 2025 11:58:11 +0100 Subject: [PATCH 1/2] Man pages: Fix incorrect reference from a command page to another MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Viktor Söderqvist --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c2348a9f..a7672b60 100644 --- a/Makefile +++ b/Makefile @@ -212,7 +212,7 @@ $(MAN_DIR)/man3/%.3valkey.gz: commands/%.md $(BUILD_DIR)/.commands-per-group.jso --version $(VERSION) --date $(DATE) \ --commands-per-group-json $(BUILD_DIR)/.commands-per-group.json \ --valkey-root $(FINAL_ROOT) $< \ - | utils/links-to-man.py - | $(to_man) > $@ + | utils/links-to-man.py --is-command-page - | $(to_man) > $@ $(MAN_DIR)/man5/%.5.gz: topics/%.md $(man_scripts) utils/preprocess-markdown.py --man --page-type config \ --version $(VERSION) --date $(DATE) $< \ From aeee20fa8b8abbd13ec1a518adeb69da7cea483b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20S=C3=B6derqvist?= Date: Thu, 30 Oct 2025 11:59:36 +0100 Subject: [PATCH 2/2] Fix incorrect markdown link syntax in cluster-syncslots MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Viktor Söderqvist --- commands/cluster-syncslots.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/cluster-syncslots.md b/commands/cluster-syncslots.md index 0e164db7..f39bb08b 100644 --- a/commands/cluster-syncslots.md +++ b/commands/cluster-syncslots.md @@ -1,4 +1,4 @@ Internal command to allow navigation of the atomic slot migration state machine. For more information about atomic slot migration in Valkey please check the -[atomic slot migration][../topics/atomic-slot-migration.md] page. +[atomic slot migration](../topics/atomic-slot-migration.md) page.