mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
[gardening] Add whitespace: "foo,bar" → "foo, bar"
This commit is contained in:
@@ -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 ])} ]
|
||||
|
||||
Reference in New Issue
Block a user