From d7682cc5c929d823535a8876afbfc20356f6e54e Mon Sep 17 00:00:00 2001 From: TOMIKAWA Sotaro Date: Thu, 20 Oct 2022 09:31:39 +0900 Subject: [PATCH] docs: fix typos --- README.md | 2 +- docs/docs/intro.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8962777c..1930ba3c 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ curl https://raw.githubusercontent.com/vmware-labs/wasm-workers-server/main/inst Wasm Workers Server focuses on simplicity. We want you to run handlers (written in different languages) safely in WebAssembly. For interpreted languages, we add different interpreters: -| Language | Wasm module | Interpeter | +| Language | Wasm module | Interpreter | | --- | --- | --- | | Rust | ✅ | ❌ | | JavaScript | ❌ | ✅ | diff --git a/docs/docs/intro.md b/docs/docs/intro.md index 8e657255..d0ca4a94 100644 --- a/docs/docs/intro.md +++ b/docs/docs/intro.md @@ -4,7 +4,7 @@ sidebar_position: 1 # What's Wasm Workers Server? -Wasm Workers Server is a project that allows you to run serverless code using a lightweight construct called "workers", explained later in the document. Ther server itself is implemented as a self-contained binary that routes HTTP requests to a WebAssembly runtime that hosts the workers. It looks for `.wasm` and other compatible modules (like JavaScript files) in the given folder and associate HTTP endpoints based on their path: +Wasm Workers Server is a project that allows you to run serverless code using a lightweight construct called "workers", explained later in the document. The server itself is implemented as a self-contained binary that routes HTTP requests to a WebAssembly runtime that hosts the workers. It looks for `.wasm` and other compatible modules (like JavaScript files) in the given folder and associate HTTP endpoints based on their path: ```bash $ wws --help