From 8da7f4abc779c6549833d718336d75aac98494b8 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Mon, 4 Jan 2021 15:50:30 +0900 Subject: [DOC] Update Proc.new without a block [ci skip] [Feature #10499] [Feature #15554] --- proc.c | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) (limited to 'proc.c') diff --git a/proc.c b/proc.c index 8a0a0c0967..d0870042f8 100644 --- a/proc.c +++ b/proc.c @@ -799,18 +799,15 @@ proc_new(VALUE klass, int8_t is_lambda, int8_t kernel) /* * call-seq: * Proc.new {|...| block } -> a_proc - * Proc.new -> a_proc * - * Creates a new Proc object, bound to the current context. Proc::new - * may be called without a block only within a method with an - * attached block, in which case that block is converted to the Proc - * object. + * Creates a new Proc object, bound to the current context. * - * def proc_from - * Proc.new - * end - * proc = proc_from { "hello" } + * proc = Proc.new { "hello" } * proc.call #=> "hello" + * + * Raises ArgumentError if called without a block. + * + * Proc.new #=> ArgumentError */ static VALUE -- cgit v1.2.1