aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Thiago Farina <tfarina@chromium.org>2015-05-07 13:59:59 +0000
committerGravatar Lukacs Berki <lberki@google.com>2015-05-07 14:06:53 +0000
commita0592a13c8801f395a17641579f16a3c3bc4587e (patch)
treed2c44261ec242e7507031bfa00ec6e36cf6eee3b
parent952b89176afda78d9fc1359da99b8a4c834fc013 (diff)
Fix 'seperated' typo in ProcessArg() parameter.
s/seperated/separated. -- Change-Id: I303e4ff20b241c2c58fe00ad0a5e340b5bff54d9 MOS_MIGRATED_REVID=93025985
-rw-r--r--src/main/cpp/blaze_startup_options_common.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/cpp/blaze_startup_options_common.cc b/src/main/cpp/blaze_startup_options_common.cc
index 504a5de1f5..1411d4572a 100644
--- a/src/main/cpp/blaze_startup_options_common.cc
+++ b/src/main/cpp/blaze_startup_options_common.cc
@@ -87,7 +87,7 @@ void BlazeStartupOptions::Copy(
blaze_exit_code::ExitCode BlazeStartupOptions::ProcessArg(
const string &argstr, const string &next_argstr, const string &rcfile,
- bool *is_space_seperated, string *error) {
+ bool *is_space_separated, string *error) {
// We have to parse a specific option syntax, so GNU getopts won't do. All
// options begin with "--" or "-". Values are given together with the option
// delimited by '=' or in the next option.
@@ -227,7 +227,7 @@ blaze_exit_code::ExitCode BlazeStartupOptions::ProcessArg(
}
}
- *is_space_seperated = ((value == next_arg) && (value != NULL));
+ *is_space_separated = ((value == next_arg) && (value != NULL));
return blaze_exit_code::SUCCESS;
}