From b6beb189b5a447767dc6e4793b0a5e6963deeb2c Mon Sep 17 00:00:00 2001 From: slava Date: Sat, 20 May 2006 20:46:53 +0000 Subject: [PATCH] Fix doc typo --- TODO.FACTOR.txt | 1 + library/io/c-streams.facts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/TODO.FACTOR.txt b/TODO.FACTOR.txt index 4d65c3e106..f1095b33fc 100644 --- a/TODO.FACTOR.txt +++ b/TODO.FACTOR.txt @@ -36,6 +36,7 @@ - new browser: - separate definition & documentation tabs - browse generic words and classes + - initial size sucks - toggle/radio buttons/tabs or something - make-frame should compile - track: diff --git a/library/io/c-streams.facts b/library/io/c-streams.facts index 1b0eeaf483..0b653e44c3 100644 --- a/library/io/c-streams.facts +++ b/library/io/c-streams.facts @@ -17,7 +17,7 @@ HELP: "( path -- stream )" HELP: "( host port -- stream )" { $values { "host" "a string" } { "port" "an integer between 0 and 65535" } { "stream" "a bidirectional stream" } } -{ $description "Connects to TCP/IP port number \texttt{port} on the host named by \texttt{host}, and outputs a bidirectional stream." } +{ $description "Connects to TCP/IP port number " { $code "port" } " on the host named by " { $code "host" } ", and outputs a bidirectional stream." } { $errors "Throws an error if domain name lookup fails, or if there is a connection cannot be established." } ; HELP: "( port -- server )"