aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2017-07-29 02:12:54 +0200
committerPatrick Spek <p.spek@tyil.nl>2017-07-29 02:12:54 +0200
commit4027cdfcea415edbd156be467239f98d928e9acc (patch)
treeef8a14754aa2d8fbd96d00af3f4ba89d019cdaf6
parenta913899f0ce3394501ee721b7e8c30f68a1cb133 (diff)
Use the correct type Bool instead of bool
-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;