diff options
Diffstat (limited to 'WWW/Library/Implementation/HTFormat.h')
-rw-r--r-- | WWW/Library/Implementation/HTFormat.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/WWW/Library/Implementation/HTFormat.h b/WWW/Library/Implementation/HTFormat.h index b1fbf8b4..8cba2c05 100644 --- a/WWW/Library/Implementation/HTFormat.h +++ b/WWW/Library/Implementation/HTFormat.h @@ -150,7 +150,7 @@ typedef HTAtom* HTEncoding; The HTPresentation and HTConverter types This HTPresentation structure represents a possible conversion algorithm from one - format to annother. It includes a pointer to a conversion routine. The conversion + format to another. It includes a pointer to a conversion routine. The conversion routine returns a stream to which data should be fed. See also HTStreamStack which scans the list of registered converters and calls one. See the initialisation module for a list of conversion routines. @@ -164,9 +164,9 @@ typedef HTStream * HTConverter PARAMS(( HTStream * sink)); struct _HTPresentation { - HTAtom * rep; /* representation name atmoized */ + HTAtom * rep; /* representation name atomized */ HTAtom * rep_out; /* resulting representation */ - HTConverter * converter; /* The routine to gen the stream stack */ + HTConverter * converter; /* routine to gen the stream stack */ char * command; /* MIME-format string */ float quality; /* Between 0 (bad) and 1 (good) */ float secs; @@ -184,7 +184,7 @@ extern HTList * HTPresentations; /* - The default presentation is used when no other is appriporate + The default presentation is used when no other is appropriate */ extern HTPresentation* default_presentation; |