From 3886d3435afca8cc20fac00c7e0c95d32330b1be Mon Sep 17 00:00:00 2001 From: msamylea <44280406+msamylea@users.noreply.github.com> Date: Wed, 7 Nov 2018 08:53:17 -0500 Subject: [PATCH] Fixed typo in line #4 (#21213) --- guide/english/miscellaneous/tips-for-your-coding/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/miscellaneous/tips-for-your-coding/index.md b/guide/english/miscellaneous/tips-for-your-coding/index.md index e0f69b9d68..618e5900b7 100644 --- a/guide/english/miscellaneous/tips-for-your-coding/index.md +++ b/guide/english/miscellaneous/tips-for-your-coding/index.md @@ -1,7 +1,7 @@ --- title: Tips for Your Coding --- -This list was created by compiling common issue and questions when working on the algorithm challenges, they should be helpful in general. +This list was created by compiling common issues and questions when working on the algorithm challenges, they should be helpful in general. 1. If you don't know where to start, write some pseudocode. Plan out the logic you're trying to implement in your native language before you try to put it into code.