From 0a743e05ec331b1b19040277dce9c667158b6ec4 Mon Sep 17 00:00:00 2001 From: Fred Cook Date: Sat, 1 Jun 2024 16:54:05 +0100 Subject: [PATCH] fix typo --- tutorials/learn-golang.org/en/Hello, World!.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tutorials/learn-golang.org/en/Hello, World!.md b/tutorials/learn-golang.org/en/Hello, World!.md index eac012a8d..4d8d8aec8 100644 --- a/tutorials/learn-golang.org/en/Hello, World!.md +++ b/tutorials/learn-golang.org/en/Hello, World!.md @@ -3,7 +3,7 @@ Tutorial Welcome to the first tutorial. This tutorial will guide you through your first go program. -Golang is a modern statistically typed and compiled language from Google. +Golang is a modern statically typed and compiled language from Google. In each golang program you need to define a package name at the top. So if you need to import your code into some other program you can use this package name to import. Execution of a golang project starts in the package `"main"`. So let's define our package as main. @@ -77,4 +77,4 @@ import ( func main() { fmt.Println("Hello, world!") -} \ No newline at end of file +}