The third code block in this section of the docs has the following declaration.
let joinedTriangles = JoinedShape(top: smallTriangle, bottom: flippedTriangle)
In the paragraph above the declaration, the docs mentions the following.
results in types like JoinedShape<FlippedShape<Triangle>, Triangle>
However, the actual dynamic type is JoinedShape<Triangle, FlippedShape<Triangle>>. This PR suggests rephrasing the sentence to match the actual dynamic type.
The third code block in this section of the docs has the following declaration.
let joinedTriangles = JoinedShape(top: smallTriangle, bottom: flippedTriangle)
In the paragraph above the declaration, the docs mentions the following.
However, the actual dynamic type is
JoinedShape<Triangle, FlippedShape<Triangle>>
. This PR suggests rephrasing the sentence to match the actual dynamic type.