From eedccd493ef464447aa6470af479f673987756ef Mon Sep 17 00:00:00 2001 From: Nick Logan Date: Sun, 24 Jan 2021 18:06:10 -0600 Subject: [PATCH] Use preferred return declaration --- lib/Zef.rakumod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Zef.rakumod b/lib/Zef.rakumod index 9f1988c3..847a5c03 100644 --- a/lib/Zef.rakumod +++ b/lib/Zef.rakumod @@ -101,7 +101,7 @@ package Zef { # be used. for instance, ::Shell wrappers probe via `cmd --help`. Note # that the result of .probe is cached by each phase loader role Probeable is export { - method probe returns Bool { ... } + method probe (--> Bool) { ... } } role Pluggable is export {