Skip to content

Commit 8961216

Browse files
committed
Fix typo in HotReloadableAppMacro (missing 'in' keyword)
1 parent 8be83ea commit 8961216

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/HotReloadingMacrosPlugin/HotReloadableAppMacro.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ extension HotReloadableAppMacro: MemberMacro {
104104
105105
if !hotReloadingHasConnectedToServer {
106106
hotReloadingHasConnectedToServer = true
107-
Task { @MainActor
107+
Task { @MainActor in
108108
do {
109109
var client = try await HotReloadingClient()
110110
print("Hot reloading: received new dylib")

0 commit comments

Comments
 (0)