From f18d5be54a27beef96050a28b891347f46490da6 Mon Sep 17 00:00:00 2001 From: Sven van der Burg Date: Tue, 10 Dec 2024 15:42:21 +0100 Subject: [PATCH] Fix good-bad-ugly comments blog post link https://www.freecodecamp.org/news/code-comments-the-good-the-bad-and-the-ugly-be9cc65fbf83/ --- episodes/15-coding-conventions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/episodes/15-coding-conventions.md b/episodes/15-coding-conventions.md index aa77c0517..a45506b61 100644 --- a/episodes/15-coding-conventions.md +++ b/episodes/15-coding-conventions.md @@ -388,7 +388,7 @@ unless you are 100% sure the code will never be read by people who do not speak ## The Good, the Bad, and the Ugly Comments As a side reading, check out the -['Putting comments in code: the good, the bad, and the ugly' blogpost](https://www.freecodecamp.org/news/code-comments-the-good-the-bad-and-the-ugly-be9cc65fbf83/). +['Putting comments in code: the good, the bad, and the ugly' blogpost](https://medium.com/free-code-camp/code-comments-the-good-the-bad-and-the-ugly-be9cc65fbf83). Remember - a comment should answer the 'why' question". Occasionally the "what" question. The "how" question should be answered by the code itself.