From 246c68a7a08a7b5dd0b30911a0b2aa7bc2074bdc Mon Sep 17 00:00:00 2001 From: GC Date: Wed, 17 Feb 2016 18:18:15 -0200 Subject: [PATCH] Fixed typo Fixed a typo on line 17 --- _posts/en/2016-02-04-assignment-shorthands.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/en/2016-02-04-assignment-shorthands.md b/_posts/en/2016-02-04-assignment-shorthands.md index dfb46c75..09ae74e2 100644 --- a/_posts/en/2016-02-04-assignment-shorthands.md +++ b/_posts/en/2016-02-04-assignment-shorthands.md @@ -14,7 +14,7 @@ categories: Assigning is very common. Sometimes typing becomes time consuming for us 'Lazy programmers'. So, we can use some tricks to help us and make our code cleaner and simpler. -This is the similiar use of +This is the similar use of ````javascript x += 23; // x = x + 23;