1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

fix typo.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6042 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2004-03-28 14:10:39 +00:00
parent 7307dd069f
commit adb4439f85
3 changed files with 4 additions and 4 deletions

View file

@ -465,7 +465,7 @@ to duplicate (clone, dup) itself.
== Zlib::GzipFile
The abstruct class for handling a gzip formatted compressed file.
The abstract class for handling a gzip formatted compressed file.
The operations are defined in the subclasses,
((<Zlib::GzipReader>)) for reading, and ((<Zlib::GzipWriter>))
for writing.

View file

@ -2239,7 +2239,7 @@ get_gzfile(obj)
/*
* Document-class: Zlib::GzipFile
*
* Zlib::GzipFile is an abstruct class for handling a gzip formatted
* Zlib::GzipFile is an abstract class for handling a gzip formatted
* compressed file. The operations are defined in the subclasses,
* Zlib::GzipReader for reading, and Zlib::GzipWriter for writing.
*

View file

@ -119,7 +119,7 @@ class SLex
p node
SLex.fail ErrNodeAlreadyExists
else
print "Warn: change abstruct node to real node\n" if SLex.debug?
print "Warn: change abstract node to real node\n" if SLex.debug?
@preproc = preproc
@postproc = postproc
end
@ -136,7 +136,7 @@ class SLex
p chrs
SLex.fail ErrNodeAlreadyExists
else
print "Warn: change abstruct node to real node\n" if SLex.debug?
print "Warn: change abstract node to real node\n" if SLex.debug?
node.preproc = preproc
node.postproc = postproc
end