PrimeFactors: there appears to be an extra character in the tr/// ? (#4426)

master
Rob Emery 2017-08-14 10:05:04 +01:00 committed by PJ Hampton
parent 03ec6b3650
commit e41b5cc966
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ triggers end => (
sub convert_to_superscripts (_) {
my $string = $_[0];
$string =~ tr[+=()0123456789]
[¹²³];
[¹²³];
return $string;
}