Skip to content
This repository has been archived by the owner on Aug 30, 2023. It is now read-only.

Commit

Permalink
feat(configs): fix typos
Browse files Browse the repository at this point in the history
refs: #181
  • Loading branch information
ChrisRousey committed Mar 23, 2023
1 parent c9392b2 commit 993a837
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public static Map<String, Object> toObjectMap(JsonNode json) {
public static Map<String, Object> combineMaps(
Map<String, Object> lower_priority_map, Map<String, Object> higher_priority_map) {
Map<String, Object> result = new HashMap<>(lower_priority_map);
// loop over prio1 map to replace values
// loop over higher_priority_map map to replace values
for (Map.Entry<String, Object> entry : higher_priority_map.entrySet()) {
String key = entry.getKey();
Object value = entry.getValue();
Expand Down

0 comments on commit 993a837

Please sign in to comment.