Completed
Pull Request — master (#14)
by Mischa ter
01:38
created
src/DamerauLevenshtein.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -290,7 +290,7 @@
 block discarded – undo
290 290
         $oneSize = $this->compOneLength;
291 291
         $twoSize = $this->compTwoLength;
292 292
 
293
-        $out = '  ' . $this->compOne . PHP_EOL;
293
+        $out = '  '.$this->compOne.PHP_EOL;
294 294
         for ($y = 0; $y <= $twoSize; $y += 1) {
295 295
             if ($y - 1 < 0) {
296 296
                 $out .= ' ';
Please login to merge, or discard this patch.