From bc391f83185ecbc8d0e90169aaf3b6c72e29d112 Mon Sep 17 00:00:00 2001 From: awoo <17804892+awoo-civ@users.noreply.github.com> Date: Wed, 15 Nov 2023 13:08:44 +0000 Subject: [PATCH] Fix an inconsistency in the docs --- docs/source/getting-started/hello-world.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/getting-started/hello-world.md b/docs/source/getting-started/hello-world.md index cad2060c1..c3b76320b 100644 --- a/docs/source/getting-started/hello-world.md +++ b/docs/source/getting-started/hello-world.md @@ -58,7 +58,7 @@ class async Main { ``` Inko uses lightweight processes (more on that later), which are defined using -the syntax `async class NAME { ... }`. The main process is always called "Main", +the syntax `class async NAME { ... }`. The main process is always called "Main", and is required to define an "async" instance method called "main". The final line writes the message to STDOUT: