Skip to content

Commit 1fd8a14

Browse files
committed
fix typos
1 parent d90ce80 commit 1fd8a14

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
typealias MyValue = Optional<Int>
2222

2323
@TaskLocal
24-
static var number: MyValue // Swift 6: error, please specify default value explicitl
24+
static var number: MyValue // Swift 6: error, please specify default value explicitly
2525

2626
// Solution 1: Specify the default value
2727
@TaskLocal

lib/Macros/Sources/SwiftMacros/TaskLocalMacro.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import SwiftDiagnostics
1717
/// Macro implementing the TaskLocal functionality.
1818
///
1919
/// It introduces a peer `static let $name: TaskLocal<Type>` as well as a getter
20-
/// that assesses accesses the task local storage.
20+
/// that accesses the task local storage.
2121
public enum TaskLocalMacro {}
2222

2323
extension TaskLocalMacro: PeerMacro {

0 commit comments

Comments
 (0)