Skip to content

Commit 59e6e2a

Browse files
authored
Update Library.fs
1 parent 7deffad commit 59e6e2a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Examples/Examples.SharedCode/Library.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ module SimpleBrowserApp =
110110
do! handleToAwaitJSReady
111111
// NOTE: depending on the exact platform, it may or may not be safe to assume that the DOM exists right after the
112112
// JS context has been created. We must first check whether or not it's loaded. In the event it is, we just execute
113-
// the code directly. Otherwise, we add our cofde in a handler to DOMContentLoaded.
113+
// the code directly. Otherwise, we add our code in a handler to DOMContentLoaded.
114114
window.Browser.ExecuteJavascriptf
115115
"function injectValues() {
116116
document.getElementById('runtimeFramework').textContent='%s'
@@ -242,4 +242,4 @@ module SimpleBrowserApp =
242242
let app onMainWindowCreated : BrowserApp<'TWindow> = BrowserApp.create (fun mainCtx createWindow -> async {
243243
let! mainWindow = appletSelectorWindow onMainWindowCreated mainCtx createWindow
244244
do! Async.AwaitEvent mainWindow.Closed
245-
})
245+
})

0 commit comments

Comments
 (0)