diff --git a/topical-units/env-java/README.md b/topical-units/env-java/README.md index e2ea30908cd7423bc7da3ef34b4472bea6a4c1ca..6cc9b1635d9fe2dfb7f614cf6d9fcd6e9c11af22 100644 --- a/topical-units/env-java/README.md +++ b/topical-units/env-java/README.md @@ -58,7 +58,7 @@ Write code, here is a provisional list of programs to develop: * Hello World * Read a file containing an arbitrary number of integers, one per line. Display the count, total, and average on stderr at the end of the run. Make the program capable of displaying the maximum values of each quantity without resorting to arbitrary precision arithmetic (hint, unsigned long int). * Use a function/method as part of your program, e.g. to write the aggregated values to stdout. -* Use command line parameters available via argv and argc to support -i input-file-name to pass the input file to your program. +* Use command line parameters available via argv and argc to support `java my_program input-file-name` to pass the input file to your program. class helloWorld { public static void main(String[] args) {