From 72769b61075f8a5d7dfeb924c4e8a34ca0067951 Mon Sep 17 00:00:00 2001 From: Mathew Polzin Date: Thu, 27 Dec 2018 18:22:31 -0800 Subject: [PATCH] Fix small problem with sample code in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index eeeac35..fa9ef4e 100644 --- a/README.md +++ b/README.md @@ -456,7 +456,7 @@ extension EntityDescription1.Attributes { property2 = try .defaultDecoding(from: container, forKey: .property2) property3 = try .defaultDecoding(from: container, forKey: .property3) - weirdThing = "hello world" + weirdThing = .init(value: "hello world") } public func encode(to encoder: Encoder) throws {