summaryrefslogtreecommitdiff
path: root/lib/rexml
diff options
context:
space:
mode:
authorshugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-13 02:16:05 +0000
committershugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-13 02:16:05 +0000
commit158284ac24c4f2402dadc11851058839d451a4d3 (patch)
treedc61f4fb92f35c21ec5f87c0d72b07999ceacf95 /lib/rexml
parent5ac09d7627e6934a53e1f39b59d1e67a30a2fd72 (diff)
* lib/rexml/document.rb: fixed typo.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19323 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rexml')
-rw-r--r--lib/rexml/document.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rexml/document.rb b/lib/rexml/document.rb
index 97a73e94a0..d694d3df7d 100644
--- a/lib/rexml/document.rb
+++ b/lib/rexml/document.rb
@@ -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