From 0ec3c322a496f5f6303cc0da681b388cf4116261 Mon Sep 17 00:00:00 2001 From: Fategas <38409508+Fategas@users.noreply.github.com> Date: Fri, 2 Nov 2018 01:12:02 +0000 Subject: [PATCH] Expand comment types in Java (#20409) Clarify the difference between those 3 types of comments since it might be odd for someone new. --- guide/english/java/comments-in-java/index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/guide/english/java/comments-in-java/index.md b/guide/english/java/comments-in-java/index.md index f7200a2bbe..6673025b95 100644 --- a/guide/english/java/comments-in-java/index.md +++ b/guide/english/java/comments-in-java/index.md @@ -58,6 +58,7 @@ public class RandomNumbers{ } ``` +The difference between the documentation comment and the multi & single line comments is that the former is oriented about making your comments visible to anyone viewing the documentation, while the multi and single line comments are the ones that are supposed to mainly keep you on track. #### More Information: * [Java Resources](http://guide.freecodecamp.org/java/resources/)