Commit a510e9e4 authored by Richard Levitte's avatar Richard Levitte
Browse files

Remove leading and trailing spaces and tabs

parent 1a9e663b
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -10,6 +10,8 @@ while(<STDIN>) {
	if (/ - /) {
	    s/ - .*//;
	    s/,[ \t]+/,/g;
	    s/^[ \t]+//g;
	    s/[ \t]+$//g;
	    push @words, split ',';
	}
    }