fix doc typos

This commit is contained in:
Matthew Flatt 2011-08-10 08:15:45 -06:00
parent cc78030cd2
commit be0260792e
3 changed files with 5 additions and 4 deletions

View File

@ -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?]

View File

@ -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}

View File

@ -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?]{