fix javadoc error

This commit is contained in:
Thomas Hughes 2020-08-05 17:39:49 -05:00
parent 621244f8df
commit a6bdf858f2
No known key found for this signature in database
GPG key ID: B2D8646423EF5814

View file

@ -3,11 +3,11 @@ package com.superlinter.JavaGood;
FileName : "HelloWorld.java" */
/**
* Represents a good Java file
* Represents a good Java file.
*/
public static class JavaGood {
// Prints "Hello, World" to the terminal window
private void JavaGood() {
// Prints "Hello, World" to the terminal window.
private void helloWorld() {
System.out.println("Hello, World");
}
}