From 4027cdfcea415edbd156be467239f98d928e9acc Mon Sep 17 00:00:00 2001 From: Patrick Spek Date: Sat, 29 Jul 2017 02:12:54 +0200 Subject: Use the correct type Bool instead of bool --- lib/Config.pm6 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/Config.pm6 b/lib/Config.pm6 index 63a5e7a..cd637a8 100644 --- a/lib/Config.pm6 +++ b/lib/Config.pm6 @@ -157,7 +157,7 @@ class Config is Associative is export Str $parser = "", Bool :$skip-not-found = False ) { - my bool $read = False; + my Bool $read = False; for $paths.list -> $path { next if $skip-not-found && !$path.IO.f; -- cgit v1.1