From 6cc5f61194b90978f70573e888e633219f7ec547 Mon Sep 17 00:00:00 2001
From: Dmitri Naumov <dmitri.naumov@ufz.de>
Date: Fri, 5 Jul 2024 13:09:00 +0200
Subject: [PATCH] [doc/BL] Fix link to fmt.dev format specification

---
 BaseLib/FileTools.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/BaseLib/FileTools.cpp b/BaseLib/FileTools.cpp
index 2085e41e09a..4b7a506e9cc 100644
--- a/BaseLib/FileTools.cpp
+++ b/BaseLib/FileTools.cpp
@@ -103,7 +103,7 @@ bool substituteKeyword(std::string& result,
     type_specification[std::type_index(typeid(std::string))] = 's';
 
     auto const& b = precision_specification.back();
-    // see https://fmt.dev/latest/syntax.html#formatspec
+    // see https://fmt.dev/latest/syntax/#format-specification-mini-language
     if (b == 'e' || b == 'E' || b == 'f' || b == 'F' || b == 'g' || b == 'G')
     {
         type_specification[std::type_index(typeid(double))] = b;
-- 
GitLab