From ae42b62aa6e75c172e450ab397ab902c40697b9b Mon Sep 17 00:00:00 2001 From: mo khan Date: Sun, 11 Aug 2019 18:34:29 -0600 Subject: fix javadoc --- src/Q7/Person.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/Q7') diff --git a/src/Q7/Person.java b/src/Q7/Person.java index 062a7a3..8992197 100644 --- a/src/Q7/Person.java +++ b/src/Q7/Person.java @@ -130,7 +130,10 @@ public class Person { this.setBMI((this.weight * 703) / Math.pow(height, 2)); } - /** The entry point to the console application. */ + /** + * The entry point to the console application. + * @param args the argument vector passed to the program. + **/ public static void main(String[] args) { ArrayList people = new ArrayList(); people.add(new Person("Andrew", 125.5, 55.1)); -- cgit v1.2.3