summaryrefslogtreecommitdiffstats
path: root/lib
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
commit711cf9ce602c13f22590ce38405a008189247931 (patch)
treedc61f4fb92f35c21ec5f87c0d72b07999ceacf95 /lib
parent8f1736fd1891a6b128488e561acfb65371cb40c5 (diff)
downloadruby-711cf9ce602c13f22590ce38405a008189247931.tar.gz
ruby-711cf9ce602c13f22590ce38405a008189247931.tar.xz
ruby-711cf9ce602c13f22590ce38405a008189247931.zip
* lib/rexml/document.rb: fixed typo.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19323 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-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 97a73e94a..d694d3df7 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