diff --git a/tools/doc/html.js b/tools/doc/html.js
index 3b60116b1ba422..daa230cb926e4a 100644
--- a/tools/doc/html.js
+++ b/tools/doc/html.js
@@ -263,7 +263,7 @@ var BSD_ONLY_SYSCALLS = new Set(['lchmod']);
// Returns modified text, with such refs replace with HTML links, for example
// 'open(2)'
function linkManPages(text) {
- return text.replace(/ ([a-z]+)\((\d)\)/gm, function(match, name, number) {
+ return text.replace(/ ([a-z.]+)\((\d)\)/gm, function(match, name, number) {
// name consists of lowercase letters, number is a single digit
var displayAs = name + '(' + number + ')';
if (BSD_ONLY_SYSCALLS.has(name)) {