File tree 2 files changed +2
-6
lines changed
2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -745,7 +745,7 @@ For an example of running a "full-featured" (`terminal`) REPL over
745
745
a ` net.Server ` and ` net.Socket ` instance, see:
746
746
< https://gist.github.com/TooTallNate/2209310 > .
747
747
748
- For an example of running a REPL instance over [ curl(1)] [ ] , see:
748
+ For an example of running a REPL instance over [ ` curl(1) ` ] [ ] , see:
749
749
< https://gist.github.com/TooTallNate/2053342 > .
750
750
751
751
[ ZSH ] : https://en.wikipedia.org/wiki/Z_shell
@@ -761,5 +761,5 @@ For an example of running a REPL instance over [curl(1)][], see:
761
761
[ `util.inspect()` ] : util.html#util_util_inspect_object_options
762
762
[ `reverse-i-search` ] : #repl_reverse_i_search
763
763
[ TTY keybindings ] : readline.html#readline_tty_keybindings
764
- [ curl(1) ] : https://curl.haxx.se/docs/manpage.html
764
+ [ ` curl(1)` ] : https://curl.haxx.se/docs/manpage.html
765
765
[ stream ] : stream.html
Original file line number Diff line number Diff line change @@ -126,7 +126,6 @@ function preprocessText({ nodeVersion }) {
126
126
127
127
// Syscalls which appear in the docs, but which only exist in BSD / macOS.
128
128
const BSD_ONLY_SYSCALLS = new Set ( [ 'lchmod' ] ) ;
129
- const HAXX_ONLY_SYSCALLS = new Set ( [ 'curl' ] ) ;
130
129
const MAN_PAGE = / ( ^ | \s ) ( [ a - z . ] + ) \( ( \d ) ( [ a - z ] ? ) \) / gm;
131
130
132
131
// Handle references to man pages, eg "open(2)" or "lchmod(2)".
@@ -143,9 +142,6 @@ function linkManPages(text) {
143
142
return `${ beginning } <a href="https://www.freebsd.org/cgi/man.cgi` +
144
143
`?query=${ name } &sektion=${ number } ">${ displayAs } </a>` ;
145
144
}
146
- if ( HAXX_ONLY_SYSCALLS . has ( name ) ) {
147
- return `${ beginning } <a href="https://${ name } .haxx.se/docs/manpage.html">${ displayAs } </a>` ;
148
- }
149
145
150
146
return `${ beginning } <a href="http://man7.org/linux/man-pages/man${ number } ` +
151
147
`/${ name } .${ number } ${ optionalCharacter } .html">${ displayAs } </a>` ;
You can’t perform that action at this time.
0 commit comments