Update content/blog/how-to-ask-good-questions/index.md

Co-authored-by: James Fenn <me@jfenn.me>
This commit is contained in:
Alex Chadwick Peribañez
2022-07-27 19:07:53 +01:00
committed by Corbin Crutchley
parent 04e7e55a0a
commit 1d0b4d3027

View File

@@ -54,7 +54,7 @@ In my previous example I would do the following:
> const result = sum(1, 1); // result == 1?
> ```
It also helps to introduce some comments if you don't have them already to add notes or explain some complex piece of code or maybe a function that is defined elsewhere.
It also helps to introduce some comments if you don't have them already. These can add notes, explain a complex piece of code, or describe a function that is defined elsewhere.
## Share what you have tried