summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authoryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-06-21 09:14:27 +0000
committeryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-06-21 09:14:27 +0000
commita847df14ca784a8bfd7d6daef936bdec58e9b2dc (patch)
tree054af88d57b43f7e6965a9c3555de7f618b130a4 /lib
parent003486341d21990b25edbedfbf46fceeea1e12b4 (diff)
merges r23665 from trunk into ruby_1_9_1.
-- * lib/prime.rb: documentation typo fixed. a patch from okkez. [ruby-dev:38586] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_1@23782 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/prime.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/prime.rb b/lib/prime.rb
index ce71d5e00f..4114beb292 100644
--- a/lib/prime.rb
+++ b/lib/prime.rb
@@ -118,7 +118,7 @@ class Prime
# if no block given.
#
# == Description
- # Calls +block+ once for each prime numer, passing the prime as
+ # Calls +block+ once for each prime number, passing the prime as
# a parameter.
#
# +ubound+::
@@ -127,7 +127,7 @@ class Prime
#
# == Note
# +Prime+.+new+ returns a object extended by +Prime+::+OldCompatibility+
- # in order to compatibility to Ruby 1.9, and +Prime+#each is overwritten
+ # in order to compatibility to Ruby 1.8, and +Prime+#each is overwritten
# by +Prime+::+OldCompatibility+#+each+.
#
# +Prime+.+new+ is now obsolete. Use +Prime+.+instance+.+each+ or simply