From f5cb8c5264a633e93f2273789635ece813cb4c48 Mon Sep 17 00:00:00 2001 From: mkarthikworld Date: Tue, 14 Apr 2015 06:22:58 +0530 Subject: [PATCH] Update on Int type example Although int32 has a longer length than int8, and has the same type as int --- en/02.2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/02.2.md b/en/02.2.md index b3b23896..ef69956a 100644 --- a/en/02.2.md +++ b/en/02.2.md @@ -103,7 +103,7 @@ One important thing you should know that you cannot assign values between these c := a + b -Although int has a longer length than uint8, and has the same length as int32, you cannot assign values between them. ( ***c will be asserted as type `int` here*** ) +Although int32 has a longer length than int8, and has the same type as int, you cannot assign values between them. ( ***c will be asserted as type `int` here*** ) Float types have the `float32` and `float64` types and no type called `float`. The latter one is the default type if using brief statement.