Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix some comments #1454

Merged
merged 1 commit into from
Apr 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading