Fix playground bug caused by not running after removing a typealias

This commit is contained in:
Mathew Polzin
2018-11-30 20:18:08 -08:00
parent 04bf96a0cf
commit 853c7e892a
@@ -58,6 +58,6 @@ func process<T: JSONAPIDocument>(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)