Skip to content

Commit

Permalink
correct typo (#147)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobvjk authored Sep 19, 2024
1 parent 94c40d9 commit 63e0938
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion R/load_config.R
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ get_sector_split_type <- function(params) {
params[["sector_split"]][["sector_split_type"]]
}

get_use_maunal_sector_classification <- function(params) {
get_use_manual_sector_classification <- function(params) {
params[["matching"]][["manual_sector_classification"]][["use_manual_sector_classification"]]
}

Expand Down
2 changes: 1 addition & 1 deletion R/run_calculate_match_success_rate.R
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ run_calculate_match_success_rate <- function(config) {
dir_raw <- get_raw_dir(config)
dir_matched <- get_matched_dir(config)

matching_use_manual_sector_classification <- get_use_maunal_sector_classification(config)
matching_use_manual_sector_classification <- get_use_manual_sector_classification(config)
if (matching_use_manual_sector_classification) {
path_manual_sector_classification <- get_manual_sector_classification_path(config)
}
Expand Down
2 changes: 1 addition & 1 deletion R/run_matching.R
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ run_matching <- function(config) {
matching_overwrite <- get_match_overwrite(config)
matching_join_id <- get_match_join_id(config)

matching_use_manual_sector_classification <- get_use_maunal_sector_classification(config)
matching_use_manual_sector_classification <- get_use_manual_sector_classification(config)
if (matching_use_manual_sector_classification) {
path_manual_sector_classification <- get_manual_sector_classification_path(config)
}
Expand Down

0 comments on commit 63e0938

Please sign in to comment.