Fix bad code example in documentation

This commit is contained in:
Janosch Müller 2022-12-08 22:14:08 +01:00 коммит произвёл Nobuyoshi Nakada
Родитель e714907d82
Коммит 6ea3edbdad
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1473,7 +1473,7 @@ rb_f_loop_size(VALUE self, VALUE args, VALUE eobj)
* loop do
* print "Input: "
* line = gets
* break if !line or line =~ /^qQ/
* break if !line or line =~ /^q/i
* # ...
* end
*