diff --git a/src/main.cpp b/src/main.cpp index f7838cd..a5f12c5 100755 --- a/src/main.cpp +++ b/src/main.cpp @@ -14,11 +14,11 @@ int main(int argc, char* argv[]) { cout << "Built on system name: " << cppmanifest::getBuildSystemName() << endl; cout << "Built on system processor: " << cppmanifest::getBuildSystemProcessor() << endl; cout << "Built with system ver: " << cppmanifest::getBuildSystemVersion() << endl; - cout << "Built with system ver: " << cppmanifest::getBuildHostName() << endl; + cout << "Built with system host name: " << cppmanifest::getBuildHostName() << endl; cout << "Built from git branch: " << cppmanifest::getGitBranch() << endl; if (cppmanifest::getGitIsClean()) cout << "Built from git hash: " << cppmanifest::getGitHash() << endl; else cout << "Built from git hash: " << cppmanifest::getGitHash() << "-DIRTY" << endl; -} \ No newline at end of file +}