File tree 4 files changed +4
-4
lines changed
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ <h2 class="text-2xl font-bold text-blue-600"><a href="./panel_stream.html" targe
85
85
</ p >
86
86
87
87
< h2 class ="text-2xl font-bold text-blue-600 "> < a href ="./panel.html " target =”_blank” > Simple Panel Demo</ a > </ h2 >
88
- < p > Simple demo showing Panel widgets interating with parts of the page
88
+ < p > Simple demo showing Panel widgets interacting with parts of the page
89
89
90
90
WARNING: This examples takes a little longer to load. So be patient :)
91
91
</ p >
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ export class PyBox extends HTMLElement {
26
26
while ( this . childNodes . length > 0 ) {
27
27
console . log ( this . firstChild ) ;
28
28
if ( this . firstChild . nodeName == 'PY-REPL' ) {
29
- // in this case we need to remove the child and craete a new one from scratch
29
+ // in this case we need to remove the child and create a new one from scratch
30
30
const replDiv = document . createElement ( 'div' ) ;
31
31
// we need to put the new repl inside a div so that if the repl has auto-generate true
32
32
// it can replicate itself inside that constrained div
Original file line number Diff line number Diff line change @@ -141,7 +141,7 @@ async function initHandlers() {
141
141
source = `Element("${ el . id } ").element.onclick = ${ handlerCode } ` ;
142
142
output = await pyodide . runPythonAsync ( source ) ;
143
143
144
- // TODO: Should we actually map handlers in JS instaed of Python?
144
+ // TODO: Should we actually map handlers in JS instead of Python?
145
145
// el.onclick = (evt: any) => {
146
146
// console.log("click");
147
147
// new Promise((resolve, reject) => {
Original file line number Diff line number Diff line change @@ -422,7 +422,7 @@ const loadInterpreter = async function (): Promise<any> {
422
422
stderr : console . log ,
423
423
} ) ;
424
424
425
- // now that we loaded, add additional convenience fuctions
425
+ // now that we loaded, add additional convenience functions
426
426
console . log ( 'loading micropip' ) ;
427
427
await pyodide . loadPackage ( 'micropip' ) ;
428
428
console . log ( 'loading pyscript module' ) ;
You can’t perform that action at this time.
0 commit comments