From b6e9c092458de9487d394053cd30982aba046c91 Mon Sep 17 00:00:00 2001 From: Preetham Pemmasani <75422607+ppmpreetham@users.noreply.github.com> Date: Thu, 31 Oct 2024 21:40:36 +0530 Subject: [PATCH] async better Replaced the 'go' keyword with 'async' in the token definitions due to readability --- src/go/token/token.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/go/token/token.go b/src/go/token/token.go index aa5d6e02a6f..65b4efcaf45 100644 --- a/src/go/token/token.go +++ b/src/go/token/token.go @@ -213,7 +213,7 @@ var tokens = [...]string{ FOR: "for", FUNC: "func", - GO: "go", + GO: "async", GOTO: "goto", IF: "if", IMPORT: "import",