We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9cfb993 + 5935a37 commit cc424f4Copy full SHA for cc424f4
TSPL.docc/LanguageGuide/OpaqueTypes.md
@@ -121,8 +121,8 @@ print(flippedTriangle.draw())
121
122
This approach to defining a `JoinedShape<T: Shape, U: Shape>` structure
123
that joins two shapes together vertically, like the code below shows,
124
-results in types like `JoinedShape<FlippedShape<Triangle>, Triangle>`
125
-from joining a flipped triangle with another triangle.
+results in types like `JoinedShape<Triangle, FlippedShape<Triangle>>`
+from joining a triangle with a flipped triangle.
126
127
```swift
128
struct JoinedShape<T: Shape, U: Shape>: Shape {
0 commit comments