Skip to content

Commit 08fedcb

Browse files
authored
Fixed typo in code sample. (#414)
1 parent fa9fb7a commit 08fedcb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

_posts/2023-09-28-whats-new-swift-debugging-5.9.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ func use<T>(_ t: T) {
5151
}
5252

5353
use(5)
54-
use("Hello!)
54+
use("Hello!")
5555
```
5656

5757
Running `po T.self`, when stopped in `use`, will print `Int` when coming in through the first call, and `String` in the second.
@@ -100,7 +100,7 @@ error: <EXPR>:3:1: error: cannot find 'a' in scope
100100
42
101101
```
102102

103-
<!---
103+
<!---
104104
In fact, the Swift language's scoping rules allow some astonishing things to be done with variable bindings:
105105
106106
```swift

0 commit comments

Comments
 (0)