Swift: fix QLDoc typos

Co-authored-by: Geoffrey White <40627776+geoffw0@users.noreply.github.com>
This commit is contained in:
Robert Marsh
2023-10-16 13:20:41 -04:00
committed by GitHub
parent b832fc8e32
commit d0ec2fd643
2 changed files with 2 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ private import codeql.swift.elements.expr.Expr
/**
* A Swift autoclosure expression, that is, a closure automatically generated
* around an argument when the parameter has the `@autoclosure` attribute or
* for the rtight-hand operand of short-circuiting logical operations. For
* for the right-hand operand of short-circuiting logical operations. For
* example, there is an `AutoClosureExpr` around the value `0` in:
* ```
* func myFunction(_ expr: @autoclosure () -> Int) {