Skip to content

Commit

Permalink
DEVTOOL: Fixes a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Vincent Bénony committed Jan 6, 2016
1 parent 56f6ac5 commit 40373d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion devtools/create_project/xcode.cpp
Expand Up @@ -1130,7 +1130,7 @@ std::string XcodeProvider::writeProperty(const std::string &variable, Property &

output += writeSetting(setting->first, setting->second);

// The combination of SettingsAsList, and kSettingsSingleItem should use "," and not ";" (i.e children
// The combination of kSettingsAsList, and kSettingsSingleItem should use "," and not ";" (i.e children
// in PBXGroup, so we special case that case here.
if ((prop._flags & kSettingsAsList) && (prop._settings.size() > 1 || (prop._flags & kSettingsSingleItem))) {
output += (prop._settings.size() > 0) ? ",\n" : "\n";
Expand Down

0 comments on commit 40373d8

Please sign in to comment.