Skip to content

Commit

Permalink
Merge pull request #1454 from NinaLua/master
Browse files Browse the repository at this point in the history
chore: fix some comments
  • Loading branch information
jawalonoski authored Apr 30, 2024
2 parents bc5063b + 3303262 commit e0a6de7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/main/java/org/mitre/synthea/engine/Module.java
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ private static Map<String, ModuleSupplier> loadModules() {
}

/**
* The the path to the modules directory, ensuring the right file system support is loaded if
* The path to the modules directory, ensuring the right file system support is loaded if
* we are running from a jar file.
* @return the path
* @throws URISyntaxException if something goes wrong
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/mitre/synthea/export/ExportHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ public static String getSystemURI(String system) {
}

/**
* Translate the the official FHIR system URI (e.g. http://snomed.info/sct)
* Translate the official FHIR system URI (e.g. http://snomed.info/sct)
* into system name (e.g. SNOMED-CT).
* @param uri http://snomed.info/sct, http://loinc.org, etc.
* @return The internal short name used by Synthea, or "Unknown"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ String getDualEligibilityCode(Person person, boolean medicareAge,
}

/**
* The the current beneficiary ID code (CRNT_BIC).
* The current beneficiary ID code (CRNT_BIC).
* @param person The person.
* @param ageThisYear The person's current age (at the end of the year).
* @param disabled If the person is disabled according to SSD.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -708,7 +708,7 @@ public void costsUncoveredByNoInsurance() {
// The No Insurance's uncovered costs should equal the total cost.
assertTrue(fakeEncounter.getCost()
.equals(PayerManager.getNoInsurancePlan().getPayer().getAmountUncovered()));
// The person's out of pocket expenses shoudl equal the total cost.
// The person's out of pocket expenses should equal the total cost.
assertTrue(fakeEncounter.getCost().equals(person.coverage.getTotalOutOfPocketExpenses()));
}

Expand Down

0 comments on commit e0a6de7

Please sign in to comment.