Skip to content

Commit 8937e0b

Browse files
committed
Swift: == -> =
1 parent 12201d2 commit 8937e0b

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

swift/ql/.generated.list

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

swift/ql/lib/codeql/swift/generated/Raw.qll

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

swift/ql/lib/codeql/swift/generated/type/Type.qll

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

swift/schema.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ class Type(Element):
8080
canonical_type: "Type" | desc("""
8181
This is the unique type we get after resolving aliases and desugaring. For example, given
8282
```
83-
typealias MyInt == Int
83+
typealias MyInt = Int
8484
```
8585
then `[MyInt?]` has the canonical type `Array<Optional<Int>>`.
8686
""")

0 commit comments

Comments
 (0)