From 6f71193307d8236f42af49ade1ff4a92122e774c Mon Sep 17 00:00:00 2001 From: Augusto Date: Mon, 17 Jun 2019 18:20:13 +0100 Subject: [PATCH] delete unnecessary instruction --- subjects/point.en.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/subjects/point.en.md b/subjects/point.en.md index e83bc86de..d74ce5d5d 100644 --- a/subjects/point.en.md +++ b/subjects/point.en.md @@ -18,8 +18,7 @@ func main() { setPoint(points) - fmt.Printf("x = %d, y = %d",points.x, points.y) - fmt.Println() + fmt.Printf("x = %d, y = %d\n",points.x, points.y) } ```