Swift: == -> =

This commit is contained in:
Geoffrey White
2023-10-27 17:18:09 +01:00
parent 12201d2e8e
commit 8937e0b313
4 changed files with 5 additions and 5 deletions

View File

@@ -80,7 +80,7 @@ class Type(Element):
canonical_type: "Type" | desc("""
This is the unique type we get after resolving aliases and desugaring. For example, given
```
typealias MyInt == Int
typealias MyInt = Int
```
then `[MyInt?]` has the canonical type `Array<Optional<Int>>`.
""")