Skip to content

Commit

Permalink
Fixed typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
oTTer-Chief committed Nov 11, 2016
1 parent 27d473d commit 90d594c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion HOWTO.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ See the *Check* Section in *Preparing the FLIB*.
- Set the Linux boot parameters: 'pcie_aspm=off 'acpi=ht noapic'


### Flesnet can not allocate enough memory.
### Flesnet cannot allocate enough memory.

- The softiwarp install script installs a configuration to /etc/security/limits.d/.
You need to re-login after installing for these changes to take affect.
Expand Down
2 changes: 1 addition & 1 deletion app/flesnet/Parameters.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ void Parameters::parse_options(int argc, char* argv[])

std::ifstream ifs(config_file.c_str());
if (!ifs) {
throw ParametersException("can not open config file: " + config_file);
throw ParametersException("cannot open config file: " + config_file);
} else {
po::store(po::parse_config_file(ifs, config), vm);
notify(vm);
Expand Down
2 changes: 1 addition & 1 deletion app/flib_cfg/parameters.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ class parameters {

std::ifstream ifs(config_file.c_str());
if (!ifs) {
throw ParametersException("can not open config file: " + config_file);
throw ParametersException("cannot open config file: " + config_file);
} else {
po::store(po::parse_config_file(ifs, config_file_options), vm);
notify(vm);
Expand Down
2 changes: 1 addition & 1 deletion app/flib_server/parameters.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ class parameters {
std::ifstream ifs(config_file.c_str());
if (!ifs) {
if (config_file != "flib_server.cfg") {
throw ParametersException("Can not open config file: " + config_file);
throw ParametersException("Cannot open config file: " + config_file);
}
} else {
std::cout << "Using config file: " << config_file << "\n";
Expand Down

0 comments on commit 90d594c

Please sign in to comment.