mirror of
https://github.com/curl/curl.git
synced 2026-07-24 16:57:22 +03:00
managen: fix removing backticks from subtitles
It erroneously removed them from the wrong variable. Closes #14081
This commit is contained in:
parent
80769b9c9e
commit
9784f9acf3
1 changed files with 1 additions and 1 deletions
|
|
@ -317,7 +317,7 @@ sub render {
|
|||
$word =~ s/[\"\'](.*)[\"\']\z/$1/;
|
||||
|
||||
# remove backticks from headers
|
||||
$words =~ s/\`//g;
|
||||
$word =~ s/\`//g;
|
||||
|
||||
# if there is a space, it needs quotes for man page
|
||||
if(($word =~ / /) && $manpage) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue