Fix spelling of 'opening'

pull/1159/head
Andrew Tribick 2021-11-13 17:38:48 +01:00 committed by ajtribick
parent 2cf37d3e70
commit 43f0cc416e
2 changed files with 2 additions and 2 deletions

View File

@ -832,7 +832,7 @@ LoadSampledOrbitXYZVBinary(const fs::path& filename, TrajectoryInterpolation int
ifstream in(filename.string(), ios::binary);
if (!in.good())
{
cerr << fmt::sprintf(_("Error openning %s.\n"), filename);
cerr << fmt::sprintf(_("Error opening %s.\n"), filename);
return nullptr;
}

View File

@ -15,7 +15,7 @@ static bool binaryToText(const string& infilename, const string& outfilename)
ofstream out(outfilename);
if (!in.good() || !out.good())
{
fmt::print(cerr, _("Error openning {} or .\n"), infilename, outfilename);
fmt::print(cerr, _("Error opening {} or .\n"), infilename, outfilename);
return false;
}