From 853c7e892a610e31ddd708944e3d4c4679206562 Mon Sep 17 00:00:00 2001 From: Mathew Polzin Date: Fri, 30 Nov 2018 20:18:08 -0800 Subject: [PATCH] Fix playground bug caused by not running after removing a typealias --- JSONAPI.playground/Pages/Usage.xcplaygroundpage/Contents.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/JSONAPI.playground/Pages/Usage.xcplaygroundpage/Contents.swift b/JSONAPI.playground/Pages/Usage.xcplaygroundpage/Contents.swift index 6b89adf..cbc2856 100644 --- a/JSONAPI.playground/Pages/Usage.xcplaygroundpage/Contents.swift +++ b/JSONAPI.playground/Pages/Usage.xcplaygroundpage/Contents.swift @@ -58,6 +58,6 @@ func process(document: T) { guard case let .data(body) = document.body else { return } - let x: T.BodyData = body + let x: T.Body.Data = body } process(document: peopleResponse)