From d25d421780286e3de0714831a5f82eca59234249 Mon Sep 17 00:00:00 2001 From: KevinZonda <33132228+KevinZonda@users.noreply.github.com> Date: Sat, 28 Oct 2023 14:08:23 +0100 Subject: [PATCH] docs: fix wrong way to import in go Signed-off-by: KevinZonda <33132228+KevinZonda@users.noreply.github.com> --- runtime/Go/antlr/README.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/Go/antlr/README.adoc b/runtime/Go/antlr/README.adoc index f3503bd320..344a355a84 100644 --- a/runtime/Go/antlr/README.adoc +++ b/runtime/Go/antlr/README.adoc @@ -10,7 +10,7 @@ Your driver code etc. should now be importing from the new release only repo for ```go import ( - github.com/antlr4-go/antlr + "github.com/antlr4-go/antlr" ) ```