From 46026ccc2ec6fba8c3c7cb609b28cd18d2597079 Mon Sep 17 00:00:00 2001 From: Emmanuel Lepage-Vallee Date: Mon, 30 Dec 2019 23:13:25 -0800 Subject: [PATCH] doc: Fix a regression that added another space in the URL. This will break some existing links, but oh well, it isn't the first time and some websites cannot render URLs with spaces in them. This means external references to some of the input doc are currently impossible. --- docs/config.ld | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/config.ld b/docs/config.ld index fd7a9ac68..f06d603a7 100644 --- a/docs/config.ld +++ b/docs/config.ld @@ -418,7 +418,7 @@ sort_modules=true -- Add more project level (left side index) types. new_type("coreclassmod", "Core_components" , true) -new_type("inputmodule" , "Input handling" , true) +new_type("inputmodule" , "Input_handling" , true) new_type("ruleslib" , "Declarative_rules", true) new_type("widgetmod" , "Widgets" , true) new_type("containermod", "Widget_containers", true)