Skip to content

Commit a699a1f

Browse files
authored
Merge pull request #244 from wenbingzuo/fix-warning
fix: implicit conversion warning
2 parents 13597a6 + 84397de commit a699a1f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/Action/Action+Internal.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import Foundation
22
import RxSwift
33

44
internal struct AssociatedKeys {
5-
static var Action = "rx_action"
6-
static var DisposeBag = "rx_disposeBag"
5+
static var Action: StaticString = "rx_action"
6+
static var DisposeBag: StaticString = "rx_disposeBag"
77
}
88

99
// Note: Actions performed in this extension are _not_ locked

0 commit comments

Comments
 (0)