[gardening] Add whitespace: "foo,bar" → "foo, bar"

This commit is contained in:
practicalswift
2016-04-12 21:57:49 +02:00
parent ba431a9954
commit c760f6dfbf
50 changed files with 127 additions and 127 deletions

View File

@@ -35,7 +35,7 @@ import Foundation
var graphemeBreakPropertyTable = [
// 'as Int' annotations are needed to help prevent the type-checker from
// blowing the stack. <rdar://problem/17539704>
% for start_code_point,end_code_point,value in grapheme_cluster_break_property_table.property_value_ranges:
% for start_code_point, end_code_point, value in grapheme_cluster_break_property_table.property_value_ranges:
(${start_code_point} as Int, ${end_code_point} as Int, _GraphemeClusterBreakPropertyValue.${value}),
% end
]
@@ -164,7 +164,7 @@ UnicodeTrie.test("GraphemeClusterSegmentation/UnicodeSpec") {
// Test segmentation algorithm using test data from the Unicode
// specification.
% for code_points,expected_boundaries in grapheme_cluster_break_tests:
% for code_points, expected_boundaries in grapheme_cluster_break_tests:
do {
let scalars: [UInt32] =
[ ${", ".join([ str(cp) for cp in code_points ])} ]