From 01bb37b0f6dfdc417d414b90ece16f574584b6a7 Mon Sep 17 00:00:00 2001 From: Shadowfacts Date: Mon, 6 Jun 2022 23:58:43 -0400 Subject: [PATCH] Fix warning --- Tusker/LazilyDecoding.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tusker/LazilyDecoding.swift b/Tusker/LazilyDecoding.swift index 86cc4bf6..c77eed6b 100644 --- a/Tusker/LazilyDecoding.swift +++ b/Tusker/LazilyDecoding.swift @@ -58,7 +58,7 @@ public struct LazilyDecoding { } extension LazilyDecoding { - init(arrayFrom keyPath: ReferenceWritableKeyPath) where Value == [T] { + init(arrayFrom keyPath: ReferenceWritableKeyPath) where Value == [T] { self.init(from: keyPath, fallback: []) } }