Refine wording about the default random seed [ci skip]

This commit is contained in:
Nobuyoshi Nakada 2021-12-16 15:53:42 +09:00
Родитель f1a02ebfb9
Коммит 18fef09a02
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -11,7 +11,7 @@ describe "Kernel.srand" do
srand(20).should == 10
end
it "returns the previous seed value on the first call" do
it "returns the system-initialized seed value on the first call" do
ruby_exe('print srand(10)', options: '--disable-gems').should =~ /\A\d+\z/
end