summaryrefslogtreecommitdiffstats
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
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
-rw-r--r--ChangeLog4
-rw-r--r--lib/rexml/document.rb4
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 787f764c5..ab648b32f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
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