diff --git a/src/main/java/ca/uhn/fhir/letsbuild/upload/CsvDataUploader.java b/src/main/java/ca/uhn/fhir/letsbuild/upload/CsvDataUploader.java index ca9194c..654f3f5 100644 --- a/src/main/java/ca/uhn/fhir/letsbuild/upload/CsvDataUploader.java +++ b/src/main/java/ca/uhn/fhir/letsbuild/upload/CsvDataUploader.java @@ -31,7 +31,7 @@ public static void main(String[] theArgs) throws Exception { .withDelimiter(','); CSVParser csvParser = format.parse(reader); - // Loop throw each row in the CSV file + // Loop through each row in the CSV file for (CSVRecord nextRecord : csvParser.getRecords()) { // Sequence number - This could be used as an ID for generated resources