From 7cd6a1fb32b74e2584a6708f93c0baab6146130b Mon Sep 17 00:00:00 2001 From: Praveen Murali Date: Mon, 15 Oct 2018 21:35:02 +0530 Subject: [PATCH] Reworded couple of lines in index.md (#19313) --- client/src/pages/guide/english/documentation/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/src/pages/guide/english/documentation/index.md b/client/src/pages/guide/english/documentation/index.md index 6872dfce36b..f9d799f2e9e 100644 --- a/client/src/pages/guide/english/documentation/index.md +++ b/client/src/pages/guide/english/documentation/index.md @@ -3,11 +3,11 @@ title: Code documentation --- ## Code Documentation -Code documentation is a way developers write their code to create the best versions of their functions possible. Code Documentations lets the newbie to get comfortable with the custom of the particular module, function etc for a particular programming language. It is always recommended to go with the Documentation before debugging your code, this helps you to debug effectively. +Code documentation is a way developers write their code to create the best versions of their functions possible. Code Documentation lets the newbie to get comfortable with the customs of the particular module, functions etc for a particular programming language. It is always recommended to go with the documentation before debugging your code, this helps you to debug effectively. -For example, you should be able to pass along your code to an absolute beginner and they should be able to follow along through comments, appropriate variable names and structuring code in a spaced, readable manner. +For example, if you happen to pass along your code to an absolute beginner, they should be able to follow along through comments, appropriate variable names and that means structuring the code in a spaced, readable manner. -It may become an extremely important idea to make a habit out of commenting your functions, loops, and declarations and treating comments as a part of the source code, just as regular code should be. +It may become an extremely important idea to make a habit out of commenting your functions, loops, and declarations and treating comments as part of the source code, just as regular code should be. ![An example of commenting in the real world](https://cdn-images-1.medium.com/max/1620/1*Pyxsc7Uixbitv5myywaA_Q.jpeg)