aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/Config.pm62
1 files changed, 1 insertions, 1 deletions
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;