Skip to content

Commit 78d99d5

Browse files
committed
Update index.html
1 parent d98560d commit 78d99d5

1 file changed

Lines changed: 3 additions & 6 deletions

File tree

index.html

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -472,21 +472,18 @@ <h4>Zero Configuration</h4>
472472
"$ bin/dispatcher say --words Hello --import tinystruct.examples.example",
473473
"Hello",
474474
" ",
475-
"# bin/dispatcher start --import org.tinystruct.system.NettyHttpServer --server-port 777",
475+
"# bin/dispatcher start --import org.tinystruct.system.HttpServer --server-port 777",
476476
" ",
477477
" _/ ' _ _/ _ _ _/",
478478
" / / /) (/ _) / / (/ ( / 1.7.25",
479479
" /",
480480
" ",
481-
`${new Date().toLocaleString()} org.tinystruct.system.NettyHttpServer start`,
482-
"INFO: Netty server (777) startup in 30 ms"
481+
`${new Date().toLocaleString()} org.tinystruct.system.HttpServer start`,
482+
"INFO: Http server (777) startup in 30 ms"
483483
];
484484

485485
const outputMain = document.getElementById('output-main');
486-
const cursorMain = document.getElementById('cursor-main');
487-
488486
let i = 0;
489-
490487
function typeCommands() {
491488
if (i < commands.length) {
492489
const line = commands[i];

0 commit comments

Comments
 (0)