summaryrefslogtreecommitdiff
path: root/src/Q7
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2019-08-11 18:34:29 -0600
committermo khan <mo@mokhan.ca>2019-08-11 18:34:29 -0600
commitae42b62aa6e75c172e450ab397ab902c40697b9b (patch)
treeb519030b8be96c207433856eb7724af030779e92 /src/Q7
parentd4932bfe4b6468fb4622bc9d6765d30c44d7edeb (diff)
fix javadoc
Diffstat (limited to 'src/Q7')
-rw-r--r--src/Q7/Person.java5
1 files changed, 4 insertions, 1 deletions
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<Person> people = new ArrayList<Person>();
people.add(new Person("Andrew", 125.5, 55.1));