summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Allen <dan.j.allen@gmail.com>2020-05-10 03:14:26 -0600
committerDan Allen <dan.j.allen@gmail.com>2020-05-10 03:14:26 -0600
commit11aaeabed5935cdb7e65b65eb44b44210f039b87 (patch)
treeaae7087eb3a3de83df96cf360b0d1427f388e9e1
parentb02ad26f4beedd3c7f974d9937595a09b4ce8778 (diff)
fix missing space in source of manpage converter
-rw-r--r--lib/asciidoctor/converter/manpage.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/asciidoctor/converter/manpage.rb b/lib/asciidoctor/converter/manpage.rb
index 6143f0a1..0ad2e7b3 100644
--- a/lib/asciidoctor/converter/manpage.rb
+++ b/lib/asciidoctor/converter/manpage.rb
@@ -727,7 +727,7 @@ allbox tab(:);'
gsub('&#8656;', '\(lA'). # leftwards double arrow
gsub('&#8658;', '\(rA'). # rightwards double arrow
gsub('&#8203;', '\:'). # zero width space
- gsub('&amp;','&'). # literal ampersand (NOTE must take place after any other replacement that includes &)
+ gsub('&amp;', '&'). # literal ampersand (NOTE must take place after any other replacement that includes &)
gsub('\'', '\(aq'). # apostrophe-quote
gsub(MockBoundaryRx, ''). # mock boundary
gsub(ESC_BS, '\\'). # unescape troff backslash (NOTE update if more escapes are added)