From 95cf9a2927bbc418f58c3e45687c9262c5d2a69d Mon Sep 17 00:00:00 2001 From: monabot Date: Wed, 27 Nov 2024 10:35:06 +0000 Subject: [PATCH] feat(docs): update docs Updates the Wing docs. See details in [workflow run]. [Workflow Run]: https://github.com/winglang/docsite/actions/runs/12048496740 ------ *Automatically created via the "update-docs" workflow* Signed-off-by: monabot --- .../version-latest/00-index.md | 2 +- .../01-start-here/02-getting-started.md | 38 ------------------- 2 files changed, 1 insertion(+), 39 deletions(-) diff --git a/typescript_versioned_docs/version-latest/00-index.md b/typescript_versioned_docs/version-latest/00-index.md index 3f8cb365..12a7453c 100644 --- a/typescript_versioned_docs/version-latest/00-index.md +++ b/typescript_versioned_docs/version-latest/00-index.md @@ -1,6 +1,6 @@ --- title: TypeScript For Wing -id: 'intro' +id: intro --- Wing's CLI has experimental support for TypeScript. diff --git a/versioned_docs/version-latest/01-start-here/02-getting-started.md b/versioned_docs/version-latest/01-start-here/02-getting-started.md index 3d12d58b..b0b10e64 100644 --- a/versioned_docs/version-latest/01-start-here/02-getting-started.md +++ b/versioned_docs/version-latest/01-start-here/02-getting-started.md @@ -51,44 +51,6 @@ queue.setConsumer(inflight (message: str) => { }); ``` - - Here we defined a queue and a counter. Every time a message is added to the queue, a handler is triggered and creates a file named `wing-{counter-index}.txt` with the content `"Hello, {message}!"`, and the counter is incremented by 1. Now that we've written this program, let's run and test it using the **Wing Console**.