[clang] Fix CCC_OVERRIDE_OPTIONS docstring to say "space separated" (NFC)

As well as a couple other minor docstring corrections.
This commit is contained in:
Dave Lee
2023-08-15 10:28:52 -07:00
parent 3cb0128d26
commit f7f3e68419

View File

@@ -79,9 +79,9 @@ static const char *GetStableCStr(std::set<std::string> &SavedStrings,
return SavedStrings.insert(std::string(S)).first->c_str();
}
/// ApplyQAOverride - Apply a list of edits to the input argument lists.
/// ApplyQAOneOverride - Apply a list of edits to the input argument lists.
///
/// The input string is a space separate list of edits to perform,
/// The input string is a space separated list of edits to perform,
/// they are applied in order to the input argument lists. Edits
/// should be one of the following forms:
///
@@ -177,7 +177,7 @@ static void ApplyOneQAOverride(raw_ostream &OS,
}
}
/// ApplyQAOverride - Apply a comma separate list of edits to the
/// ApplyQAOverride - Apply a space separated list of edits to the
/// input argument lists. See ApplyOneQAOverride.
static void ApplyQAOverride(SmallVectorImpl<const char*> &Args,
const char *OverrideStr,