1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[ruby/prime] Fix typo

https://github.com/ruby/prime/commit/549c1b86f1
This commit is contained in:
Marcus Stollsteimer 2019-12-27 19:47:04 +01:00 committed by Hiroshi SHIBATA
parent f236f6082c
commit e92fbaf609

View file

@ -84,7 +84,7 @@ end
# There are few implementations of generator.
#
# [+Prime+::+EratosthenesGenerator+]
# Uses eratosthenes' sieve.
# Uses Eratosthenes' sieve.
# [+Prime+::+TrialDivisionGenerator+]
# Uses the trial division method.
# [+Prime+::+Generator23+]