From 2802a2d1a4ed50c13c76fe1be0453d870e08f7dc Mon Sep 17 00:00:00 2001 From: Martin Yonatan Pasaribu <107392127+martinyonatann@users.noreply.github.com> Date: Sat, 16 Nov 2024 22:54:35 +0700 Subject: [PATCH] Update BAD Example in import-alias.md This update refines the BAD example in import-alias.md to better illustrate improper usage of import aliases, making it easier for readers to understand and learn from the mistake. --- src/import-alias.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/import-alias.md b/src/import-alias.md index 50bc3523..09910478 100644 --- a/src/import-alias.md +++ b/src/import-alias.md @@ -25,7 +25,7 @@ import ( "fmt" "os" - + runtimetrace "runtime/trace" nettrace "golang.net/x/trace" ) ```