Skip to content

Commit 853c7e8

Browse files
committed
Fix playground bug caused by not running after removing a typealias
1 parent 04bf96a commit 853c7e8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

JSONAPI.playground/Pages/Usage.xcplaygroundpage/Contents.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,6 @@ func process<T: JSONAPIDocument>(document: T) {
5858
guard case let .data(body) = document.body else {
5959
return
6060
}
61-
let x: T.BodyData = body
61+
let x: T.Body.Data = body
6262
}
6363
process(document: peopleResponse)

0 commit comments

Comments
 (0)