From: Arvin Schnell Date: Mon, 25 Apr 2022 14:33:21 +0000 (+0200) Subject: - fixed typo X-Git-Tag: v0.10.1^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F712%2Fhead;p=thirdparty%2Fsnapper.git - fixed typo --- diff --git a/snapper/LvmUtils.cc b/snapper/LvmUtils.cc index b8589f8c..959a078f 100644 --- a/snapper/LvmUtils.cc +++ b/snapper/LvmUtils.cc @@ -41,7 +41,7 @@ namespace snapper std::smatch match; if (!regex_match(name, match, rx)) - throw std::runtime_error("faild to split device name into volume group and " + throw std::runtime_error("failed to split device name into volume group and " "logical volume name"); string vg_name = boost::replace_all_copy(match[1].str(), "--", "-");