aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2018-03-28 23:18:37 +0200
committerPatrick Spek <p.spek@tyil.nl>2023-07-25 02:17:00 +0200
commit2d60d81964e2eb4ffc6ee5ed25afd1cc20fba3ab (patch)
tree13f654390aabc946e182694b054105d1812b0bc3 /lib
parente1c2408b4004d3cb3c6c19a23d20bf4f53fdd727 (diff)
Update to use newer Hash::Merge
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 d7fee4a..4fc3121 100644
--- a/lib/Config.pm6
+++ b/lib/Config.pm6
@@ -187,7 +187,7 @@ class Config is Associative is export
#| Read a plain Hash into the configuration.
multi method read(Hash $hash)
{
- $!content.merge($hash);
+ $!content = merge-hash($!content, $hash);
return True;
}