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

* lib/rexml/document.rb: fixed typo.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19323 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
shugo 2008-09-13 02:16:05 +00:00
parent 5ac09d7627
commit 158284ac24
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
Sat Sep 13 11:15:38 2008 Shugo Maeda <shugo@ruby-lang.org>
* lib/rexml/document.rb: fixed typo.
Sat Sep 13 10:53:13 2008 Tadayoshi Funaba <tadf@dotrb.org>
* complex.c: refined.

View file

@ -203,12 +203,12 @@ module REXML
@@entity_expansion_limit = 10_000
# Set the entity expansion limit. By defualt the limit is set to 10000.
# Set the entity expansion limit. By default the limit is set to 10000.
def Document::entity_expansion_limit=( val )
@@entity_expansion_limit = val
end
# Get the entity expansion limit. By defualt the limit is set to 10000.
# Get the entity expansion limit. By default the limit is set to 10000.
def Document::entity_expansion_limit
return @@entity_expansion_limit
end