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:
parent
7307dd069f
commit
adb4439f85
3 changed files with 4 additions and 4 deletions
|
@ -465,7 +465,7 @@ to duplicate (clone, dup) itself.
|
||||||
|
|
||||||
== Zlib::GzipFile
|
== 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,
|
The operations are defined in the subclasses,
|
||||||
((<Zlib::GzipReader>)) for reading, and ((<Zlib::GzipWriter>))
|
((<Zlib::GzipReader>)) for reading, and ((<Zlib::GzipWriter>))
|
||||||
for writing.
|
for writing.
|
||||||
|
|
|
@ -2239,7 +2239,7 @@ get_gzfile(obj)
|
||||||
/*
|
/*
|
||||||
* Document-class: Zlib::GzipFile
|
* 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,
|
* compressed file. The operations are defined in the subclasses,
|
||||||
* Zlib::GzipReader for reading, and Zlib::GzipWriter for writing.
|
* Zlib::GzipReader for reading, and Zlib::GzipWriter for writing.
|
||||||
*
|
*
|
||||||
|
|
|
@ -119,7 +119,7 @@ class SLex
|
||||||
p node
|
p node
|
||||||
SLex.fail ErrNodeAlreadyExists
|
SLex.fail ErrNodeAlreadyExists
|
||||||
else
|
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
|
@preproc = preproc
|
||||||
@postproc = postproc
|
@postproc = postproc
|
||||||
end
|
end
|
||||||
|
@ -136,7 +136,7 @@ class SLex
|
||||||
p chrs
|
p chrs
|
||||||
SLex.fail ErrNodeAlreadyExists
|
SLex.fail ErrNodeAlreadyExists
|
||||||
else
|
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.preproc = preproc
|
||||||
node.postproc = postproc
|
node.postproc = postproc
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue