From 6bb06ccbaad0034487a2aa3fd9e82acab36337dc Mon Sep 17 00:00:00 2001 From: Patrick Spek Date: Wed, 28 Mar 2018 23:18:37 +0200 Subject: Update to use newer Hash::Merge --- 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 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; } -- cgit v1.1