From be0260792e0d5ba5412e4be23044cac80dce14ba Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Wed, 10 Aug 2011 08:15:45 -0600 Subject: [PATCH] fix doc typos --- collects/file/scribblings/gunzip.scrbl | 2 +- collects/file/scribblings/zip.scrbl | 2 +- collects/net/scribblings/ftp.scrbl | 5 +++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/collects/file/scribblings/gunzip.scrbl b/collects/file/scribblings/gunzip.scrbl index e63ede6c84..516901ac53 100644 --- a/collects/file/scribblings/gunzip.scrbl +++ b/collects/file/scribblings/gunzip.scrbl @@ -5,7 +5,7 @@ @defmodule[file/gunzip]{The @racketmodname[file/gunzip] library provides utilities to decompress archive files in @exec{gzip} format, or simply -to deccompress data using the @exec{pkzip} ``inflate'' method.} +to decompress data using the @exec{pkzip} ``inflate'' method.} @defproc[(gunzip [file path-string?] diff --git a/collects/file/scribblings/zip.scrbl b/collects/file/scribblings/zip.scrbl index 25a967016d..afd11d743d 100644 --- a/collects/file/scribblings/zip.scrbl +++ b/collects/file/scribblings/zip.scrbl @@ -1,5 +1,5 @@ #lang scribble/doc -@(require "common.rkt" (for-label file/zip file/gunzip scheme/file)) +@(require "common.rkt" (for-label file/zip file/gzip file/gunzip scheme/file)) @title[#:tag "zip"]{@exec{zip} File Creation} diff --git a/collects/net/scribblings/ftp.scrbl b/collects/net/scribblings/ftp.scrbl index dd6af831ca..7c8fc253db 100644 --- a/collects/net/scribblings/ftp.scrbl +++ b/collects/net/scribblings/ftp.scrbl @@ -22,8 +22,9 @@ returned by @racket[ftp-establish-connection], @racket[#f] otherwise.} [passwd string?]) ftp-connection?]{ -Establishes an FTP connection with the given server using the -supplied username and password.} +Establishes an FTP connection with the given server using the supplied +username and password. The @racket[port-np] argument usually should be +@racket[21].} @defproc[(ftp-close-connection [ftp-conn ftp-connection?]) void?]{