summaryrefslogtreecommitdiff
path: root/spec/ruby/library/rexml/element/has_text_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/library/rexml/element/has_text_spec.rb')
-rw-r--r--spec/ruby/library/rexml/element/has_text_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/library/rexml/element/has_text_spec.rb b/spec/ruby/library/rexml/element/has_text_spec.rb
index de19fe0763..206c167ae6 100644
--- a/spec/ruby/library/rexml/element/has_text_spec.rb
+++ b/spec/ruby/library/rexml/element/has_text_spec.rb
@@ -11,7 +11,7 @@ ruby_version_is ''...'3.0' do
e.has_text?.should be_true
end
- it "returns false if it has no Text childs" do
+ it "returns false if it has no Text children" do
e = REXML::Element.new("Person")
e.has_text?.should be_false
end