From dd0944bf688ba97cda055e489de108bd3fe39839 Mon Sep 17 00:00:00 2001 From: blacksheepaul <26378591+blacksheepaul@users.noreply.github.com> Date: Thu, 12 Jun 2025 16:56:34 +0800 Subject: [PATCH] Update getting-started.md (#2787) --- internal/website/docs/getting-started.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/website/docs/getting-started.md b/internal/website/docs/getting-started.md index cc4260a3..e14b4d67 100644 --- a/internal/website/docs/getting-started.md +++ b/internal/website/docs/getting-started.md @@ -193,8 +193,8 @@ import ( pb "github.com/micro/helloworld/proto" ) -package main() { - service := micro.New("helloworld) +func main() { + service := micro.New("helloworld") service.Init() say := pb.NewSayService("helloworld", service.Client())