summaryrefslogtreecommitdiff
path: root/src/StringUtils.ml
diff options
context:
space:
mode:
Diffstat (limited to 'src/StringUtils.ml')
-rw-r--r--src/StringUtils.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/StringUtils.ml b/src/StringUtils.ml
index 601249ca..0fd46136 100644
--- a/src/StringUtils.ml
+++ b/src/StringUtils.ml
@@ -32,7 +32,7 @@ let lowercase_ascii = Char.lowercase_ascii
let uppercase_ascii = Char.uppercase_ascii
(** Using buffers as per:
- [https://stackoverflow.com/questions/29957418/how-to-convert-char-list-to-string-in-ocaml]
+ {{: https://stackoverflow.com/questions/29957418/how-to-convert-char-list-to-string-in-ocaml} stackoverflow}
*)
let string_of_chars (chars : char list) : string =
let buf = Buffer.create (List.length chars) in