Skip to content

Commit e287d08

Browse files
committed
tests: normalize dashes to ' - ' so whitespace collapse yields expected spacing
1 parent e4f4f19 commit e287d08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

RomanNormalizer.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ + (NSString *)normalize:(NSString *)input {
3232
NSDictionary *punct = @{
3333
@"": @"\"", @"": @"\"",
3434
@"": @"'", @"": @"'",
35-
@"": @"-", @"": @"-",
35+
@"": @" - ", @"": @" - ",
3636
@"": @"..."
3737
};
3838
for (NSString *k in punct) {

0 commit comments

Comments
 (0)