From 6bbcee92565e52b286ac70974c00bce5aa051b22 Mon Sep 17 00:00:00 2001
From: Porter Libby <pelibby16@earlham.edu>
Date: Wed, 21 Feb 2024 16:43:00 -0500
Subject: [PATCH] small change to java

---
 topical-units/env-java/README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/topical-units/env-java/README.md b/topical-units/env-java/README.md
index e2ea309..6cc9b16 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) {
-- 
GitLab