Skip to content

Commit 4c72b42

Browse files
authored
EmbeddedApp/main.swift: Fix capitalization in print statement
1 parent 9230c86 commit 4c72b42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Examples/Embedded/Sources/EmbeddedApp/main.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import JavaScriptKit
33
let alert = JSObject.global.alert.object!
44
let document = JSObject.global.document
55

6-
print("Hello from WASM, document title: \(document.title.string ?? "")")
6+
print("Hello from Wasm, document title: \(document.title.string ?? "")")
77

88
var count = 0
99

0 commit comments

Comments
 (0)