From 281c8142a9d37c11036f66f1e9d9c9eb1f098992 Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Wed, 10 Aug 2022 09:42:27 +0000 Subject: [PATCH] Format code with gofmt This commit fixes the style issues introduced in ae418f6 according to the output from gofmt. Details: https://deepsource.io/gh/akshit-deepsource/demo-go/transform/48f1dd23-ea6d-43d0-b321-60aab78ce491/ --- hex_example.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hex_example.go b/hex_example.go index 3ed1a97..a637bcd 100644 --- a/hex_example.go +++ b/hex_example.go @@ -2,7 +2,7 @@ package main func HexLiteral() bool { x := 0xFff - y := 0xFFF + y := 0xFFF z := 0xfff return (x == y) && (y == z)