From 66c4cdf9a95285ecb185232535fde8d11dd45ded Mon Sep 17 00:00:00 2001 From: Mr-Wiseguy Date: Tue, 2 Jul 2024 21:39:15 -0400 Subject: [PATCH] Fix review typo --- src/config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.cpp b/src/config.cpp index a3241a2..7126e55 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -448,7 +448,7 @@ RecompPort::Config::Config(const char* path) { throw toml::parse_error("Reference symbol files can only be used in elf input mode", data_reference_syms_file_data.node()->source()); } if (func_reference_syms_file_path.empty()) { - throw toml::parse_error("Data reference symbol files can only be used if a functoin reference symbol file is also in use", data_reference_syms_file_data.node()->source()); + throw toml::parse_error("Data reference symbol files can only be used if a function reference symbol file is also in use", data_reference_syms_file_data.node()->source()); } const toml::array* array = data_reference_syms_file_data.as_array(); data_reference_syms_file_paths = get_data_syms_paths(array, basedir);